내가 자꾸 까먹어서 쓰는 개발 이야기/jQuery
jQuery 까먹기 쉬운것들
1. ajax !! $.ajax({ type : "POST", url : "action URL", dataType:"json", // json 혹은 xml ,text 로 받을수 있당 error:function(xhr,textStatus){ alert('error!'); }, success:function(text){ alert('success'); // text 이름으로 받는당~~ }, beforeSend:function(){ alert('action 보내기 전에 수행 할수 있당~~~'); } }); 2. css 에 따라서 조건문 달기~~ if($('.css').css('display') == 'none'){ //css 가 none 가 아닐 경우에 이 것이 수행 된다~ } 3. jquery 로 HTML ..
2010. 12. 6. 11:20
최근댓글