// Create a new option element. var option = document.createElement("option"); // Set the text and value properties of the option element. option.text = "Option Text"; option.value = "Option Value"; // Append the option element to the select element. var select = document.getElementById("mySelect"); select.appendChild(option);
$("input[type='checkbox']").is(":checked") // This method will return a boolean value, indicating whether or not the checkbox is checked. $("input[type='checkbox']").prop("checked") // This method will return the value of the checked property of the checkbox, which is a boolean value.
.background 방식 Button { let utterance = AVSpeechUtterance(string: word.alphabet ?? "") utterance.voice = AVSpeechSynthesisVoice(language: "en-US") DoctorSLApp.avSpeechSynthesizer.speak(utterance) } label: { Image(systemName: "speaker.wave.3") .foregroundColor(.accentColor) .frame(width: 50, height: 50, alignment: .center) .background(.ultraThinMaterial, in: Circle()) } .clipShape 방식 Button { let..
const selectedDate = new Date($("#txt_new_warehouse_in_Date").val()); var currentDate = new Date($("#txt_warehouse_in_Date").val()); // current date // 비교 연상자가 시간까지 계산식에 포함시기 때문에 시간을 0으로 설정 currentDate = new Date(currentDate.getFullYear(), currentDate.getMonth(), currentDate.getDate(), 0, 0, 0, 0); let pastDate = new Date(currentDate.getTime() - (5 * 24 * 60 * 60 * 1000)); let futureDate = new D..
for let str = ''; for (let i = 0; i < 9; i++) { str = str + i; } console.log(str); // Expected output: "012345678" for of const array1 = ['a', 'b', 'c']; for (const element of array1) { console.log(element); } // Expected output: "a" // Expected output: "b" // Expected output: "c" for in const object = { a: 1, b: 2, c: 3 }; for (const property in object) { console.log(`${property}: ${object[prop..
- Total
- Today
- Yesterday
- 진수 변환
- React
- 스프링 시큐리티(spring security)-http basic 인증
- error-java
- System.Diagnostics
- 스프링 프레임워크(spring framework)
- 스프링 프레임워크(spring framewordk)
- 상품 등록
- 인텔리제이(intellij)
- jstl(java standard tag library)-core
- .submit()
- java 키워드 정리
- await
- 특정 문자를 기준으로 자르기
- 메이븐(maven)
- system.io
- 스프링 시큐리티(spring security)
- In App Purchase
- 제품 등록
- jstl(java standard tag library)
- REST API
- nl2br
- java web-mvc
- 람다식(lambda expression)
- 문자 자르기
- 표현 언어(expression language)
- java.sql
- MainActor
- jsp 오픈 소스
- java-개발 환경 설정하기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |