>  기사  >  웹 프론트엔드  >  Jquery 요약tips_jquery

Jquery 요약tips_jquery

WBOY
WBOY원래의
2016-05-16 15:22:581059검색

다음은 Jquery 사용 팁 중 일부입니다. 예를 들어, 마우스 오른쪽 버튼 클릭 비활성화, 검색 텍스트 상자 텍스트 숨기기, 새 창에서 링크 열기, 브라우저 감지, 이미지 미리 로드, 페이지 스타일 전환, 모든 열의 높이 동일, 페이지 글꼴 크기 동적으로 제어, 마우스 포인터의 X 값과 Y 값, 요소가 비어 있는지 확인하고, 요소를 교체하고, 지연 로드하고, 요소가 Jquery 컬렉션에 존재하는지 확인하고, DIV를 클릭 가능하게 만들고, 개체를 복제하고, 요소를 가운데에 두고, 개수를 계산합니다. 요소 수, Google 호스트에서 Jquery 클래스 라이브러리 사용, Jquery 비활성화 효과는 Jquery 클래스 라이브러리와 다른 Javascript 클래스 라이브러리 간의 충돌 문제를 해결하는 것입니다.

1. 우클릭 금지

$(document).ready(function(){
  $(document).bind("contextmenu",function(e){
    return false;
  });
});

2. 검색 텍스트 상자 텍스트 숨기기
검색창을 클릭하면 값이 숨겨집니다.(예는 아래 댓글창에서 확인하실 수 있습니다)

$(document).ready(function() {
$("input.text1").val("Enter your search text here");
  textFill($('input.text1'));
});
 
  function textFill(input){ //input focus text function
  var originalvalue = input.val();
  input.focus( function(){
    if( $.trim(input.val()) == originalvalue ){ input.val(''); }
  });
  input.blur( function(){
    if( $.trim(input.val()) == '' ){ input.val(originalvalue); }
  });
}

3.새 창에서 링크 열기
XHTML 1.0 Strict는 코드에서 이 속성을 허용하지 않으므로 이를 사용하여 코드를 유효하게 유지하세요.

$(document).ready(function() {
  //Example 1: Every link will open in a new window
  $('a[href^="http://"]').attr("target", "_blank");
 
  //Example 2: Links with the rel="external" attribute will only open in a new window
  $('a[@rel$='external']').click(function(){
   this.target = "_blank";
  });
});
// how to use
<A href="http://www.opensourcehunter.com" rel=external>open link</A>

4. 브라우저 감지
참고: jQuery 1.4 버전에서는 $.support가 $.browser 변수를 대체했습니다

$(document).ready(function() {
// Target Firefox 2 and above
if ($.browser.mozilla && $.browser.version >= "1.8" ){
  // do something
}
 
// Target Safari
if( $.browser.safari ){
  // do something
}
 
// Target Chrome
if( $.browser.chrome){
  // do something
}
 
// Target Camino
if( $.browser.camino){
  // do something
}
 
// Target Opera
if( $.browser.opera){
  // do something
}
 
// Target IE6 and below
if ($.browser.msie && $.browser.version <= 6 ){
  // do something
}
 
// Target anything above IE6
if ($.browser.msie && $.browser.version > 6){
  // do something
}
});

5. 이미지 미리 로드
이 코드는 모든 이미지가 로드되는 것을 방지하므로 이미지가 많은 사이트에 유용할 수 있습니다.

$(document).ready(function() {
jQuery.preloadImages = function()
{
 for(var i = 0; i<ARGUMENTS.LENGTH; jQuery(&#63;<img { i++)>").attr("src", arguments[i]);
 }
}
// how to use
$.preloadImages("image1.jpg");
});

6. 페이지 스타일 전환

$(document).ready(function() {
  $("a.Styleswitcher").click(function() {
    //swicth the LINK REL attribute with the value in A REL attribute
    $('link[rel=stylesheet]').attr('href' , $(this).attr('rel'));
  });
// how to use
// place this in your header
<LINK rel=stylesheet type=text/css href="default.css">
// the links
<A class="Styleswitcher" href="#" rel=default.css>Default Theme</A>
<A class="Styleswitcher" href="#" rel=red.css>Red Theme</A>
<A class="Styleswitcher" href="#" rel=blue.css>Blue Theme</A>
});

7. 높이가 같은 기둥
두 개의 CSS 열을 사용하는 경우 이 방법을 사용하면 두 열의 높이를 동일하게 만들 수 있습니다.

$(document).ready(function() {
function equalHeight(group) {
  tallest = 0;
  group.each(function() {
    thisHeight = $(this).height();
    if(thisHeight > tallest) {
      tallest = thisHeight;
    }
  });
  group.height(tallest);
}
// how to use
$(document).ready(function() {
  equalHeight($(".left"));
  equalHeight($(".right"));
});
});

8. 페이지 글꼴 크기를 동적으로 제어
사용자는 페이지 글꼴 크기를 변경할 수 있습니다

$(document).ready(function() {
 // Reset the font size(back to default)
 var originalFontSize = $('html').css('font-size');
  $(".resetFont").click(function(){
  $('html').css('font-size', originalFontSize);
 });
 // Increase the font size(bigger font0
 $(".increaseFont").click(function(){
  var currentFontSize = $('html').css('font-size');
  var currentFontSizeNum = parseFloat(currentFontSize, 10);
  var newFontSize = currentFontSizeNum*1.2;
  $('html').css('font-size', newFontSize);
  return false;
 });
 // Decrease the font size(smaller font)
 $(".decreaseFont").click(function(){
  var currentFontSize = $('html').css('font-size');
  var currentFontSizeNum = parseFloat(currentFontSize, 10);
  var newFontSize = currentFontSizeNum*0.8;
  $('html').css('font-size', newFontSize);
  return false;
 });
});

9. 페이지 상단으로 돌아가기
정상(또는 모든 위치)으로 원활하게(애니메이션) 타고 돌아가려면.

$(document).ready(function() {
$('a[href*=#]').click(function() {
 if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
 && location.hostname == this.hostname) {
  var $target = $(this.hash);
  $target = $target.length && $target
  || $('[name=' + this.hash.slice(1) +']');
  if ($target.length) {
 var targetOffset = $target.offset().top;
 $('html,body')
 .animate({scrollTop: targetOffset}, 900);
  return false;
  }
 }
 });
// how to use
// place this where you want to scroll to
<A name=top></A>
// the link
<A href="#top">go to top</A>
});

11. 마우스 포인터 XY 값 가져오기
마우스 커서가 어디에 있는지 알고 싶으십니까?

$(document).ready(function() {
  $().mousemove(function(e){
   //display the x and y axis values inside the div with the id XY
  $('#XY').html("X Axis : " + e.pageX + " | Y Axis " + e.pageY);
 });
// how to use
<DIV id=XY></DIV>
 
});

12. 요소가 비어 있는지 확인
이를 통해 요소가 비어 있는지 확인할 수 있습니다.

$(document).ready(function() {
 if ($('#id').html()) {
  // do something
  }
});

13. 요소 교체
div 또는 다른 것을 교체하고 싶으십니까?

$(document).ready(function() {
  $('#id').replaceWith('
<DIV>I have been replaced</DIV>
 
');
});

14. jQuery 지연 로딩 기능
뭔가 미루고 싶으신가요?

$(document).ready(function() {
  window.setTimeout(function() {
   // do something
  }, 1000);
});

15. 단어 기능 제거
특정 단어를 제거하고 싶으십니까?

$(document).ready(function() {
  var el = $('#id');
  el.html(el.html().replace(/word/ig, ""));
});

16. jquery 객체 컬렉션에 해당 요소가 있는지 확인하세요
요소가 존재하는 경우 .length 속성으로 간단히 테스트하세요.

$(document).ready(function() {
  if ($('#id').length) {
 // do something
 }
});

17. 전체 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>
 
});

18. ID와 클래스의 변환
Window 크기 변경시 ID와 Class 전환

$(document).ready(function() {
  function checkWindowSize() {
  if ( $(window).width() > 1200 ) {
    $('body').addClass('large');
  }
  else {
    $('body').removeClass('large');
  }
  }
$(window).resize(checkWindowSize);
});

19. 객체 복제
div 또는 다른 요소를 복제하세요.

$(document).ready(function() {
  var cloned = $('#id').clone();
// how to use
<DIV id=id></DIV>
 
});

20. 요소를 화면 중앙에 배치하세요
화면 중앙에 요소를 배치하세요.

$(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();
});

21. 자신만의 선택기를 작성하세요
자신만의 선택기를 작성하세요.

$(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');
 });
});

22. 요소 수를 세어보세요
요소 수를 계산합니다.

$(document).ready(function() {
  $("p").size();
});

23. 나만의 글머리 기호를 사용하세요
표준 또는 이미지 글머리 기호 대신 자신만의 글머리 기호를 사용하고 싶으신가요?

$(document).ready(function() {
  $("ul").addClass("Replaced");
  $("ul > li").prepend("&#8210; ");
 // how to use
 ul.Replaced { list-style : none; }
});

24. Google 호스트에서 Jquery 클래스 라이브러리를 참조하세요
Google에서 jQuery 스크립트를 호스팅하도록 하세요. 이는 두 가지 방법으로 수행할 수 있습니다.

[코드]//예제 1
3b20be4bbe334485cd32fe39e9b0392405df2b0e76ac09f110c3f4b32906c12bd7ae38a99248e45c6a9a73e8f2204a09
cf4b5804d1309565d71038dbf5a677cf
google.load("jquery", "1.2.6");
google.setOnLoadCallback(function() {
// 뭔가를 하세요
});
db271416853c42fd247a57c1a2c29eb6050eaac947592ed83aabd63e159f8c4fb779f168dd1efb06fb91da0c6e9c9b1bf190fe5cdeadabf8b7d1c3e8b660be8e

// 예시 2:(가장 좋고 가장 빠른 방법)
050eaac947592ed83aabd63e159f8c4fdb271416853c42fd247a57c1a2c29eb6[/code">http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js">db271416853c42fd247a57c1a2c29eb6[/code ]

25. Jquery(애니메이션) 효과 비활성화
모든 jQuery 효과 비활성화

$(document).ready(function() {
  jQuery.fx.off = true;
});

26. 다른 자바스크립트 라이브러리와의 충돌
웹사이트의 다른 라이브러리와의 충돌을 방지하려면 이 jQuery 메서드를 사용하고 달러 기호 대신 다른 변수 이름을 할당할 수 있습니다.

$(document).ready(function() {
  var $jq = jQuery.noConflict();
  $jq('#id').show();
});

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.