Notice
Recent Posts
Recent Comments
Link
이야기앱 세상
jQuery - jQuery.noConflict();의 사용 본문
jQuery.noConflict(); 를 사용할 경우는 prototype.js와 같은 자바스크립트 라이브러리를 jQuery와 같이 사용할 경우 prototype.js에서도 $ 기호를 사용함으로써 jQuery를 이용해 코드 작성시 충돌이 발생하게 된다. 이런 경우를 해결하기 위해 아래와 같이 $ 기호를 jQuery로 변경해 사용하게 된다.
jQuery.noConflict();
jQuery(document).ready(function(){
//실행 코드
});
반응형
'IT > jQuery' 카테고리의 다른 글
jQuery - jquery.ajax, jquery.getJSON, jquery.post 사용하기 (0) | 2016.03.24 |
---|---|
jQuery - jQuery로 구현한 checkobx 전체 선택/해제 하기 (0) | 2016.03.24 |
jQuery - (function($){})(jQuery); 의 사용 (0) | 2016.03.24 |
jQuery - $(document).ready(function(){});의 사용 (0) | 2016.03.24 |
jQuery를 이용한 radio button 정보 얻기 (0) | 2016.03.24 |
Comments