>  기사  >  웹 프론트엔드  >  자주 사용하는 자바스크립트 메소드와 공유하고 싶은 함수 모음(2편)_javascript 스킬

자주 사용하는 자바스크립트 메소드와 공유하고 싶은 함수 모음(2편)_javascript 스킬

WBOY
WBOY원래의
2016-05-16 15:23:251208검색

이 글에서는 JS를 배우는 친구들에게 도움이 되길 바라면서 자주 사용되는 자바스크립트 기능을 모아봤습니다.

22. 요소 교체

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

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 객체 컬렉션에 해당 요소가 있는지 확인하세요

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

26. 전체 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. ID와 클래스의 변환
Window 크기 변경시 ID와 Class 전환

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

28. 객체 복제

$(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("&#8210; "); // how to use
 ul.Replaced { list-style : none; }
});

33. 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(애니메이션) 효과 비활성화

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

35. 다른 자바스크립트 라이브러리와 충돌

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

위 내용이 이 글의 전체 내용입니다. 마음에 드셨다면 소장해보세요!

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