jQuery kini telah menjadi pustaka JavaScript yang paling popular dalam pembangunan web Melalui jQuery dan sejumlah besar pemalam, anda boleh mencapai pelbagai kesan cantik dengan mudah. Artikel ini akan memperkenalkan anda kepada beberapa kemahiran jQuery praktikal, dengan harapan dapat membantu anda menggunakan jQuery dengan lebih cekap.
Mengumpul 35 petua/coretan kod jQuery untuk membantu anda berkembang dengan cepat.
1 Lumpuhkan klik kanan
$(document).ready(function(){ $(document).bind("contextmenu",function(e){ return false; }); });
2. Sembunyikan teks kotak teks carian
Hide when clicked in the search field, the value.(example can be found below in the comment fields) $(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 Buka pautan dalam tetingkap baharu
XHTML 1.0 Strict doesn't allow this attribute in the code, so use this to keep the code valid. $(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 useopen link
4. Kesan pelayar
Nota: Dalam versi jQuery 1.4, $.support menggantikan pembolehubah $.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 } });
5 Pramuat imej
This piece of code will prevent the loading of all images, which can be useful if you have a site with lots of images. $(document).ready(function() { jQuery.preloadImages = function() { for(var i = 0; i<ARGUMENTS.LENGTH; jQuery(?").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// the linksDefault ThemeRed ThemeBlue Theme});
Jika dua lajur CSS digunakan, kaedah ini boleh digunakan untuk menjadikan ketinggian dua lajur sebagai sama .
$(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")); }); });
Pengguna boleh menukar saiz fon halaman
$(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; }); });
For a smooth(animated) ride back to the top(or any location). $(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// the linkgo to top});
11 Butang Kembali ke atas
Want to know where your mouse cursor is? $(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});
Menukar nilai scrollTop boleh melaraskan jarak antara pemulangan dan bahagian atas, dan parameter kedua bagi animasi ialah masa yang diperlukan untuk melakukan tindakan pemulangan (unit: milisaat ).
// Back to top $('a.top').click(function () { $(document.body).animate({scrollTop: 0}, 800); return false; }); Back to top
13 Periksa sama ada imej dimuatkan
$.preloadImages = function () { for (var i = 0; i < arguments.length; i++) { $('').attr('src', arguments[i]); } }; $.preloadImages('img/hover1.png', 'img/hover2.png');
Anda boleh menggantikan img dengan ID atau kelas lain untuk menyemak sama ada imej yang ditentukan dimuatkan.
$('img').load(function () { console.log('image load successful'); });
Jika anda kebetulan menemui pautan imej yang rosak di tapak web anda, anda boleh menggantikannya dengan imej yang tidak boleh digantikan dengan mudah. . Menambah kod mudah ini boleh menjimatkan banyak masalah kepada anda:
Walaupun tapak anda tidak mempunyai pautan imej yang rosak, tidak ada salahnya untuk menambahkan kod ini.
$('img').on('error', function () { $(this).prop('src', 'img/broken.png'); });
Jika apabila pengguna menuding tetikus pada elemen boleh klik, anda ingin menukar kesannya, Kod berikut boleh menambah atribut kelas apabila ia berlegar di atas elemen, dan secara automatik membatalkan atribut kelas apabila pengguna menjauhkan diri dari tetikus:
Nota: Menggunakan CSS terus untuk mencapai kesan ini mungkin penyelesaian yang lebih baik, tetapi anda masih perlu mengetahui kaedahnya.
$('.btn').hover(function () { $(this).addClass('hover'); }, function () { $(this).removeClass('hover'); }); 你只需要添加必要的CSS代码即可。如果你想要更简洁的代码,可以使用 toggleClass 方法: $('.btn').hover(function () { $(this).toggleClass('hover'); });
Kadangkala anda mungkin perlu melumpuhkan butang hantar borang atau medan input sehingga pengguna melakukan beberapa tindakan (contohnya, tandakan " Baca kotak semak istilah"). Anda boleh menambah atribut yang dilumpuhkan sehingga anda mahu mendayakannya:
Apa yang anda perlu lakukan ialah melaksanakan kaedah removeAttr dan masukkan atribut untuk dialih keluar sebagai parameter:
$('input[type="submit"]').prop('disabled', true);
$('input[type="submit"]').removeAttr('disabled');
18 Tukar pudar/gelongsor
$('a.no-link').click(function (e) { e.preventDefault(); });
19. Kesan Akordion Mudah
// Fade $('.btn').click(function () { $('.element').fadeToggle('slow'); }); // Toggle $('.btn').click(function () { $('.element').slideToggle('slow'); });
20. Jadikan dua DIV mempunyai ketinggian yang sama
// Close all panels $('#accordion').find('.content').hide(); // Accordion $('#accordion').find('.accordion-header').click(function () { var next = $(this).next(); next.slideToggle('fast'); $('.content').not(next).slideUp('fast'); return false; });
Kod ini akan melingkar melalui sekumpulan elemen dan menetapkan ketinggiannya kepada ketinggian maksimum antara elemen.
var $columns = $('.column'); var height = 0; $columns.each(function () { if ($(this).height() > height) { height = $(this).height(); } }); $columns.height(height);
22 🎜>
This will allow you to check if an element is empty. $(document).ready(function() { if ($('#id').html()) { // do something } });
$(document).ready(function() { $('#id').replaceWith('I have been replaced'); });
$(document).ready(function() { window.setTimeout(function() { // do something }, 1000); });
$(document).ready(function() { var el = $('#id'); el.html(el.html().replace(/word/ig, "")); });
27. ID与Class之间转换
当改变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});
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. 使用自己的 Bullets
$(document).ready(function() { $("ul").addClass("Replaced"); $("ul > li").prepend("‒ "); // how to use ul.Replaced { list-style : none; } });
33. 引用Google主机上的Jquery类库
//Example 1
34. 禁用Jquery(动画)效果
$(document).ready(function() { jQuery.fx.off = true; });
35. 与其他Javascript类库冲突解决方案
$(document).ready(function() { var $jq = jQuery.noConflict(); $jq('#id').show(); });
以上就是本章的全部内容,更多相关教程请访问jQuery视频教程!