이 기사의 예에는 고전적이고 실용적인 jQuery 코드 개발 기술이 요약되어 있습니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
23. jQuery 지연 로딩 기능
미루고 싶은 일이 있나요?
$(document).ready(function() { window.setTimeout(function() { // do something }, 1000); });
24. 단어 제거 기능
특정 단어를 제거하고 싶으십니까?
$(document).ready(function() { var el = $('#id'); el.html(el.html().replace(/word/ig, "")); });
25. jquery 개체 컬렉션에 요소가 있는지 확인합니다.
요소가 존재하는 경우 .length 속성으로 간단히 테스트하세요.
$(document).ready(function() { if ($('#id').length) { // do something } });
26. 전체 DIV를 클릭 가능하게 만듭니다
전체 div를 클릭 가능하게 만들고 싶으십니까?
$(document).ready(function() { $("div").click(function(){ //get the url from href attribute and launch the url window.location=$(this).find("a").attr("href"); return false; }); // how to use <DIV><A href="index.html">home</A></DIV> });
27. 아이디와 클래스의 변환
Window 크기 변경시 ID와 Class 전환
$(document).ready(function() { function checkWindowSize() { if ( $(window).width() > 1200 ) { $('body').addClass('large'); } else { $('body').removeClass('large'); } } $(window).resize(checkWindowSize); });
28. 객체 복제
div 또는 다른 요소를 복제합니다.
$(document).ready(function() { var cloned = $('#id').clone(); // how to use <DIV id=id></DIV> });
29. 요소를 화면 중앙에 위치시키세요
화면 중앙에 요소를 배치하세요.
$(document).ready(function() { jQuery.fn.center = function () { this.css("position","absolute"); this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px"); this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px"); return this; } $("#id").center(); });
30. 자신만의 선택기를 작성하세요
자신만의 선택기를 작성하세요.
$(document).ready(function() { $.extend($.expr[':'], { moreThen1000px: function(a) { return $(a).width() > 1000; } }); $('.box:moreThen1000px').click(function() { // creating a simple js alert box alert('The element that you have clicked is over 1000 pixels wide'); }); });
31. 요소 수를 세어보세요
요소를 계산합니다.
$(document).ready(function() { $("p").size(); });
32. 나만의 글머리 기호를 사용하세요
표준 또는 이미지 글머리 기호 대신 나만의 글머리 기호를 사용하고 싶으신가요?
$(document).ready(function() { $("ul").addClass("Replaced"); $("ul > li").prepend("‒ "); // how to use ul.Replaced { list-style : none; } });
33. Google 호스트에서 Jquery 클래스 라이브러리를 참조하세요.
Google에서 jQuery 스크립트를 호스팅하도록 두 가지 방법으로 수행할 수 있습니다.
//Example 1 <SCRIPT src="http://www.google.com/jsapi"></SCRIPT> <SCRIPT type=text/javascript> google.load("jquery", "1.2.6"); google.setOnLoadCallback(function() { // do something }); </SCRIPT><SCRIPT type=text/javascript src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></SCRIPT> // Example 2:(the best and fastest way) <SCRIPT type=text/javascript src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></SCRIPT>
34. Jquery(애니메이션) 효과 비활성화
모든 jQuery 효과 비활성화
$(document).ready(function() { jQuery.fx.off = true; });
35. 다른 Javascript 라이브러리와의 충돌 해결
웹사이트의 다른 라이브러리와의 충돌을 방지하려면 이 jQuery 메서드를 사용하고 달러 기호 대신 다른 변수 이름을 할당할 수 있습니다.
$(document).ready(function() { var $jq = jQuery.noConflict(); $jq('#id').show(); });
이상은 jQuery의 실무 기술에 관한 내용입니다. 모든 분들의 학습에 도움이 되기를 바랍니다.