728x90 jquery14 .wrap() .wrap() 원문 링크 http://api.jquery.com/wrap/ 함수들 .wrap( wrappingElement )Returns : jQuery 개요 : 조건에 일치하는 요소들의 HTML 구조를 감쌉니다. .wrap( wrappingElement ) wrappingElement 요소들을 감쌀 HTML 조각, 선택자 표현, jQuery 객체, DOM 요소 .wrap( function(index) ) function(index) HTML 컨텐츠 또는 jQuery 객체를 반환하는 콜백 함수. 인자는 요소집합의 인덱스. 함수내의 this는 요소집합의 현재 요소를 의미합니다. .wrap() 함수는 $()형식으로 쓰는 함수에서 나온 문자열 또는 객체로 감쌀 수 있습니다. 이 깊은 수준까지 중첩될 수 있습.. 2015. 12. 2. 현재 선택된 object의 tagname 변경 현재 선택된 object의 tagname 변경 $(cutObj).replaceWith(""+$(curObj).html()+""); 2015. 11. 24. jquery 라이브러리 동적 로딩 if(typeof jQuery == 'undefined') { var jqueryElement = document.createElement('script'); jqueryElement.src = '/Web-home/wizUI/js/jquery-1.4.2.min.js'; jqueryElement.onload = function(){ readyFunction(); } document.getElementsByTagName('head')[0].appendChild(jqueryElement); }else{ $(function(){ readyFunction(); }); } function readyFunction(){ alert('a'); } 2015. 11. 16. jquery ajax 전송 시 array data jquery ajax 전송 시 array data 가 필요한 경우 var styles = new Array(); styles[0] = "111"; jQuery.ajaxSettings.traditional = true; $.ajax({ url:url, type:"post", data:{ "html":html, "styles":styles }, cache:false, async:false, success:function(d){ if(d.result){ alert("수정되었습니다."); }else{ alert("실패하였습니다."); } } }); jQuery.ajaxSettings.traditional = true; => 설정해야 서버단에서 String[]로 받을 수 있다. 2015. 10. 21. 이전 1 2 3 4 다음 728x90