Dalam artikel ini, kami telah mengumpulkan beberapa fungsi Javascript yang biasa digunakan, dengan harapan dapat membantu rakan-rakan yang sedang belajar JS.
22. Gantikan elemen
$(document).ready(function() { $('#id').replaceWith(' <DIV>I have been replaced</DIV> '); });
23. fungsi pemuatan tertunda jQuery
$(document).ready(function() { window.setTimeout(function() { // do something }, 1000); });
24. Alih keluar fungsi perkataan
$(document).ready(function() { var el = $('#id'); el.html(el.html().replace(/word/ig, "")); });
25. Sahkan sama ada elemen itu wujud dalam koleksi objek jquery
$(document).ready(function() { if ($('#id').length) { // do something } });
26. Jadikan keseluruhan DIV boleh diklik
$(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 Penukaran antara ID dan Kelas
Apabila menukar saiz Tetingkap, tukar antara ID dan Kelas
$(document).ready(function() { function checkWindowSize() { if ( $(window).width() > 1200 ) { $('body').addClass('large'); } else { $('body').removeClass('large'); } } $(window).resize(checkWindowSize); });
28. Klon objek
$(document).ready(function() { var cloned = $('#id').clone();// how to use<DIV id=id></DIV>});
29 Letakkan elemen di tengah-tengah skrin
$(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. Tulis pemilih anda sendiri
$(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. Kira bilangan elemen
$(document).ready(function() { $("p").size(); });
32. Gunakan Peluru anda sendiri
$(document).ready(function() { $("ul").addClass("Replaced"); $("ul > li").prepend("‒ "); // how to use ul.Replaced { list-style : none; } });
33. Rujuk perpustakaan kelas Jquery pada hos Google
//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. Lumpuhkan kesan Jquery (animasi)
$(document).ready(function() { jQuery.fx.off = true; });
35. Penyelesaian kepada konflik dengan perpustakaan Javascript lain
$(document).ready(function() { var $jq = jQuery.noConflict(); $jq('#id').show(); });
Di atas adalah keseluruhan kandungan artikel ini Jika anda suka, kumpulkan sahaja!