목록Programming/[Javascript] (108)
른록노트
bind는 내가 함수를 지정해서 만드는거고trigger는 bind된 함수를 사용하는것이다. $(window).bind('babo',function(){window.alert("바보");}); $(window).trigger('babo);
frm 객체를 console로 찍어보면 발생한 event의 이전이나 다음 요소들을 확인할 수 있다. frm.currentTarget.previousElement 를 사용하여만약 체크박스를 만들때 옆에 설명 글을 눌러서 체크되게 하려면이전 객체의 id를 가져와서 사용하게 하는 기능을 사용하면 유용할 것 같다. var el = $($element);$(document).ready(function(){ $('table label').click(function (frm){ if(el.find('#'+frm.currentTarget.previousElementSibling.id).is(":checked")){ el.find('#'+frm.currentTarget.previousElementSibling.id).p..
참고사이트https://brendaniel.github.io/2016/12/26/form-reset-%EC%9D%98-input-hidden-%EC%B4%88%EA%B8%B0%ED%99%94-%EB%AC%B8%EC%A0%9C/
참고사이트http://aramk.tistory.com/21
두 객체를 하나로 합치는것 참고사이트http://findfun.tistory.com/404
참고사이트http://www.sunsean.com/idTabs/
var checked = $("input[type=radio][name=네임값]:checked".val(); 참고사이트http://bluesid.tistory.com/170