IT
JavaScript 동적이게 추가된 HTML 요소 JS 먹이기 예시
agnusdei1207
2022. 8. 15. 16:05
반응형
SMALL
<%-- 동적이게 추가된 요소 js먹이기 --%>
$(document).on("change", "#state", function(e){
e.preventDefault();
if($("#state").val() == "R"){
fncDate('rentalDate','returnDate');
}
});
반응형
LIST