Notice
목록each (1)
잡담소장소
jQuery를 이용한 visibility
작업하다가 배운 것. $(document).ready( function () { //input 태그의 name이 agreetype인 것 찾기 //text, radio, select 모두 해당 var $agree = $("input[name='agreetype']"); //브라우저가 IE일 경우 click으로 이벤트 발생 그외 change $agree.bind($.browser.msie ? "click":"change", function(e) { if($(e.target).val() == 'E') { //div태그안에 아이디가 ID_BTN_AUTHEMAIL인 컨트롤 찾기 $("div").find("#ID_BTN_AUTHEMAIL").each( function () { //css() 보다 attr()를 써서..
Study ;3
2010. 10. 6. 13:57