Jquery attribute vs props vs data 차이
Jquery attribute vs props vs data 차이 ----------------------------------------------------------------------------------------------------------------------------------- $(document).ready(function () { //$("#check").prop("checked", true); $("#check").attr("checked", true); $("#check").data().goodjob; $("#check").on("click", function () {//동적할당 alert(2); }) $("#check").off("click");//동적할당제거 $("#ch..