很实用的jQuery代码开发技巧收集

1. 创建一个嵌套的过滤器

 
 
  1. .filter(":not(:has(.selected))") //去掉所有不包含class为.selected的元素

2. 重用你的元素查询

 
 
  1. var allItems = $("div.item");
  2. var keepList = $("div#container1 div.item");
  3. <div>class names:
  4. $(formToLookAt + " input:checked").each(function() { keepListkeepList = keepList.filter("." + $(this).attr("name")); });
  5. </div>

3. 使用has()来判断一个元素是否包含特定的class或者元素

 
 
  1. //jQuery 1.4.* includes support for the has method. This method will find
  2. //if a an element contains a certain other element class or whatever it is
  3. //you are looking for and do anything you want to them.
  4. $("input").has(".email").addClass("email_icon");

4. 使用jQuery切换样式

 
 
  1. //Look for the media-type you wish to switch then set the href to your new style sheet
  2. $('link[media='screen']').attr('href', 'Alternative.css');

5. 限制选择的区域

 
 
  1. //Where possible, pre-fix your class names with a tag name
  2. //so that jQuery doesn't have to spend more time searching
  3. //for the element you're after. Also remember that anything
  4. //you can do to be more specific about where the element is
  5. //on your page will cut down on execution/search times
  6. var in_stock = $('#shopping_cart_items input.is_in_stock');
 
 
  1. <ul id="shopping_cart_items">
  2. <li>
  3. <input value="Item-X" name="item" class="is_in_stock" type="radio"> Item X</li>
  4. <li>
  5. <input value="Item-Y" name="item" class="3-5_days" type="radio"> Item Y</li>
  6. <li>
  7. <input value="Item-Z" name="item" class="unknown" type="radio"> Item Z</li>
  8. </ul>

6. 如何正确使用ToggleClass

 
 
  1. //Toggle class allows you to add or remove a class
  2. //from an element depending on the presence of that
  3. //class. Where some developers would use:
  4. a.hasClass('blueButton') ? a.removeClass('blueButton') : a.addClass('blueButton');
  5. //toggleClass allows you to easily do this using
  6. a.toggleClass('blueButton');

7. 设置IE指定的功能

 
 
  1. if ($.browser.msie) { // Internet Explorer is a sadist. }

8. 使用jQuery来替换一个元素

 
 
  1. $('#thatdiv').replaceWith('fnuh');

9. 验证一个元素是否为空

 
 
  1. if ($('#keks').html()) { //Nothing found ;}

10. 在无序的set中查找一个元素的索引

 
 
  1. $("ul > li").click(function () {
  2. var index = $(this).prevAll().length;
  3. });

11. 绑定一个函数到一个事件

 
 
  1. $('#foo').bind('click', function() {
  2. alert('User clicked on "foo."');
  3. });

12. 添加HTML到一个元素

 
 
  1. $('#lal').append('sometext');

13. 创建元素时使用对象来定义属性

 
 
  1. var e = $("", { href: "#", class: "a-class another-class", title: "..." });

14. 使用过滤器过滤多属性

 
 
  1. //This precision-based approached can be useful when you use
  2. //lots of similar input elements which have different types
  3. var elements = $('#someid input[type=sometype][value=somevalue]').get();

15. 使用jQuery预加载图片

 
 
  1. jQuery.preloadImages = function() { for(var i = 0; i').attr('src', arguments[i]); } };
  2. // Usage $.preloadImages('image1.gif', '/path/to/image2.png', 'some/image3.jpg');

16. 设置任何匹配一个选择器的事件处理程序

 
 
  1. $('button.someClass').live('click', someFunction);
  2. //Note that in jQuery 1.4.2, the delegate and undelegate options have been
  3. //introduced to replace live as they offer better support for context
  4. //For example, in terms of a table where before you would use..
  5. // .live()
  6. $("table").each(function(){
  7. $("td", this).live("hover", function(){
  8. $(this).toggleClass("hover");
  9. });
  10. });
  11. //Now use..
  12. $("table").delegate("td", "hover", function(){
  13. $(this).toggleClass("hover");
  14. });

17. 找到被选择到的选项(option)元素

 
 
  1. $('#someElement').find('option:selected');

18. 隐藏包含特定值的元素

 
 
  1. $("p.value:contains('thetextvalue')").hide();

19. 自动的滚动到页面特定区域

 
 
  1. jQuery.fn.autoscroll = function(selector) {
  2. $('html,body').animate(
  3. {scrollTop: $(selector).offset().top},
  4. 500
  5. );
  6. }
  7. //Then to scroll to the class/area you wish to get to like this:
  8. $('.area_name').autoscroll();

20. 检测各种浏览器

 
 
  1. Detect Safari (if( $.browser.safari)),
  2. Detect IE6 and over (if ($.browser.msie &amp;&amp; $.browser.version &gt; 6 )),
  3. Detect IE6 and below (if ($.browser.msie &amp;&amp; $.browser.version &lt;= 6 )),
  4. Detect FireFox 2 and above (if ($.browser.mozilla &amp;&amp; $.browser.version &gt;= '1.8' ))

21. 替换字符串中的单词

 
 
  1. var el = $('#id');
  2. el.html(el.html().replace(/word/ig, ''));

22. 关闭右键的菜单

 
 
  1. $(document).bind('contextmenu',function(e){ return false; });

23. 定义一个定制的选择器

 
 
  1. $.expr[':'].mycustomselector = function(element, index, meta, stack){
  2. // element- is a DOM element
  3. // index - the current loop index in stack
  4. // meta - meta data about your selector
  5. // stack - stack of all elements to loop
  6. // Return true to include current element
  7. // Return false to explude current element
  8. };
  9. // Custom Selector usage:
  10. $('.someClasses:test').doSomething();

24. 判断一个元素是否存在

 
 
  1. if ($('#someDiv').length) {//hooray!!! it exists...}

25. 使用jQuery判断鼠标的左右键点击

 
 
  1. $("#someelement").live('click', function(e) {
  2. if( (!$.browser.msie &amp;&amp; e.button == 0) || ($.browser.msie &amp;&amp; e.button == 1) ) {
  3. alert("Left Mouse Button Clicked");
  4. }
  5. else if(e.button == 2)
  6. alert("Right Mouse Button Clicked");
  7. });

 

26. 显示或者删除输入框的缺省值

 
 
  1. //This snippet will show you how to keep a default value
  2. //in a text input field for when a user hasn't entered in
  3. //a value to replace it
  4. swap_val = [];
  5. $(".swap").each(function(i){
  6. swap_val[i] = $(this).val();
  7. $(this).focusin(function(){
  8. if ($(this).val() == swap_val[i]) {
  9. $(this).val("");
  10. }
  11. }).focusout(function(){
  12. if ($.trim($(this).val()) == "") {
  13. $(this).val(swap_val[i]);
  14. }
  15. });
  16. });
 
 
  1. <INPUT class=swap value="Enter Username here.." type=text>

27. 指定时间后自动隐藏或者关闭元素(1.4支持)

 
 
  1. //Here's how we used to do it in 1.3.2 using setTimeout
  2. setTimeout(function() {
  3. $('.mydiv').hide('blind', {}, 500)
  4. }, 5000);
  5. //And here's how you can do it with 1.4 using the delay() feature (this is a lot like sleep)
  6. $(".mydiv").delay(5000).hide('blind', {}, 500);

28. 动态创建元素到DOM

 
 
  1. var newgbin1Div = $('');
  2. newgbin1Div.attr('id','gbin1.com').appendTo('body');

29. 限制textarea的字符数量

 
 
  1. jQuery.fn.maxLength = function(max){
  2. this.each(function(){
  3. var type = this.tagName.toLowerCase();
  4. var inputType = this.type? this.type.toLowerCase() : null;
  5. if(type == "input" &amp;&amp; inputType == "text" || inputType == "password"){
  6. //Apply the standard maxLength
  7. this.maxLength = max;
  8. }
  9. else if(type == "textarea"){
  10. this.onkeypress = function(e){
  11. var ob = e || event;
  12. var keyCode = ob.keyCode;
  13. var hasSelection = document.selection? document.selection.createRange().text.length &gt; 0 : this.selectionStart != this.selectionEnd;
  14. return !(this.value.length &gt;= max &amp;&amp; (keyCode &gt; 50 || keyCode == 32 || keyCode == 0 || keyCode == 13) &amp;&amp; !ob.ctrlKey &amp;&amp; !ob.altKey &amp;&amp; !hasSelection);
  15. };
  16. this.onkeyup = function(){
  17. if(this.value.length &gt; max){
  18. this.value = this.value.substring(0,max);
  19. }
  20. };
  21. }
  22. });
  23. };
  24. //Usage:
  25. $('#gbin1textarea').maxLength(500);

30. 为函数创建一个基本测试用例

 
 
  1. //Separate tests into modules.
  2. module("Module B");
  3. test("some other gbin1.com test", function() {
  4. //Specify how many assertions are expected to run within a test.
  5. expect(2);
  6. //A comparison assertion, equivalent to JUnit's assertEquals.
  7. equals( true, false, "failing test" );
  8. equals( true, true, "passing test" );
  9. });

31. 使用jQuery克隆元素

 
 
  1. var cloned = $('#gbin1div').clone();

32. 测试一个元素在jQuery中是否可见

 
 
  1. if($(element).is(':visible') == 'true') { //The element is Visible }

33. 元素屏幕居中

 
 
  1. jQuery.fn.center = function () {
  2. this.css('position','absolute');
  3. this.css('top', ( $(window).height() - this.height() ) / +$(window).scrollTop() + 'px');
  4. this.css('left', ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + 'px');return this;
  5. }
  6. //Use the above function as: $('#gbin1div').center();

34. 使用特定名字的元素对应的值生成一个数组

 
 
  1. var arrInputValues = new Array();
  2. $("input[name='table[]']").each(function(){
  3. arrInputValues.push($(this).val());
  4. });

35. 剔除元素中的HTML

 
 
  1. (function($) {
  2. $.fn.stripHtml = function() {
  3. var regexp = /&lt;("[^"]*"|'[^']*'|[^'"&gt;])*&gt;/gi;
  4. this.each(function() {
  5. $(this).html(
  6. $(this).html().replace(regexp,"")
  7. );
  8. });
  9. return $(this);
  10. }
  11. })(jQuery);
  12. //usage:
  13. $('p').stripHtml();

36. 使用closest来得到父元素

 
 
  1. $('#searchBox').closest('div');

37. 使用firebug来记录jQuery事件

 
 
  1. // Allows chainable logging
  2. // Usage: $('#someDiv').hide().log('div hidden').addClass('someClass');
  3. jQuery.log = jQuery.fn.log = function (msg) {
  4. if (console){
  5. console.log("%s: %o", msg, this);
  6. }
  7. return this;
  8. };

38. 点击链接强制弹出新窗口

 
 
  1. jQuery('a.popup').live('click', function(){
  2. newwindow=window.open($(this).attr('href'),'','height=200,width=150');
  3. if (window.focus) {newwindow.focus()}
  4. return false;
  5. });

39. 点击链接强制打开新标签页

 
 
  1. jQuery('a.newTab').live('click', function(){
  2. newwindow=window.open($(this).href);
  3. jQuery(this).target = "_blank";
  4. return false;
  5. });

40. 使用siblings()来处理同类元素

 
 
  1. // Rather than doing this
  2. $('#nav li').click(function(){
  3. $('#nav li').removeClass('active');
  4. $(this).addClass('active');
  5. });
  6. // Do this instead
  7. $('#nav li').click(function(){
  8. $(this).addClass('active')
  9. .siblings().removeClass('active');
  10. });

41. 选择或者不选页面上全部复选框

 
 
  1. var tog = false; // or true if they are checked on load
  2. $('a').click(function() {
  3. $("input[type=checkbox]").attr("checked",!tog);
  4. tog = !tog;
  5. });

42. 基于输入文字过滤页面元素

 
 
  1. //If the value of the element matches that of the entered text
  2. //it will be returned
  3. $('.gbin1Class').filter(function() {
  4. return $(this).attr('value') == $('input#gbin1Id').val() ;
  5. })

43. 取得鼠标的X和Y坐标

 
 
  1. $(document).mousemove(function(e){
  2. $(document).ready(function() {
  3. $().mousemove(function(e){
  4. $('#XY').html("Gbin1 X Axis : " + e.pageX + " | Gbin1 Y Axis " + e.pageY);
  5. });
  6. });

44. 使得整个列表元素(LI)可点击

 
 
  1. $("ul li").click(function(){
  2. window.location=$(this).find("a").attr("href"); return false;
  3. });
 
 
  1. <UL>
  2. <LI><A href="#">GBin1 Link 1</A></LI>
  3. <LI><A href="#">GBin1 Link 2</A></LI>
  4. <LI><A href="#">GBin1 Link 3</A></LI>
  5. <LI><A href="#">GBin1 Link 4</A></LI>
  6. </UL>

45. 使用jQuery来解析XML

 
 
  1. function parseXml(xml) {
  2. //find every Tutorial and print the author
  3. $(xml).find("Tutorial").each(function()
  4. {
  5. $("#output").append($(this).attr("author") + "");
  6. });
  7. }

46. 判断一个图片是否加载完全

 
 
  1. $('#theGBin1Image').attr('src', 'image.jpg').load(function() {
  2. alert('This Image Has Been Loaded');
  3. });

47. 使用jQuery命名事件

 
 
  1. //Events can be namespaced like this
  2. $('input').bind('blur.validation', function(e){
  3. // ...
  4. });
  5. //The data method also accept namespaces
  6. $('input').data('validation.isValid', true);

48. 判断cookie是否激活或者关闭

 
 
  1. var dt = new Date();
  2. dt.setSeconds(dt.getSeconds() + 60);
  3. document.cookie = "cookietest=1; expires=" + dt.toGMTString();
  4. var cookiesEnabled = document.cookie.indexOf("cookietest=") != -1;
  5. if(!cookiesEnabled)
  6. {
  7. //cookies have not been enabled
  8. }

49.  强制过期cookie

 
 
  1. var date = new Date();
  2. date.setTime(date.getTime() + (x * 60 * 1000));
  3. $.cookie('example', 'foo', { expires: date });

50. 使用一个可点击的链接替换页面中所有URL

 
 
  1. $.fn.replaceUrl = function() {
  2. var regexp = /((ftp|http|https)://(w+:{0,1}w*@)?(S+)(:[0-9]+)?(/|/([w#!:.?+=&amp;%@!-/]))?)/gi;
  3. this.each(function() {
  4. $(this).html(
  5. $(this).html().replace(regexp,'<A href="$1">$1</A>')
  6. );
  7. });
  8. return $(this);
  9. }
  10. //usage
  11. $('#GBin1div').replaceUrl();

51: 在表单中禁用“回车键”

大家可能在表单的操作中需要防止用户意外的提交表单,那么下面这段代码肯定非常有帮助:

 
 
  1. $("#form").keypress(function(e) {
  2. if (e.which == 13) {
  3. return false;
  4. }
  5. });

52: 清除所有的表单数据

可能针对不同的表单形式,你需要调用不同类型的清楚方法,不过使用下面这个现成方法,绝对能让你省不少功夫。

 
 
  1. function clearForm(form) {
  2. // iterate over all of the inputs for the form
  3. // element that was passed in
  4. $(':input', form).each(function() {
  5. var type = this.type;
  6. var tag = this.tagName.toLowerCase(); // normalize case
  7. // it's ok to reset the value attr of text inputs,
  8. // password inputs, and textareas
  9. if (type == 'text' || type == 'password' || tag == 'textarea')
  10. this.value = "";
  11. // checkboxes and radios need to have their checked state cleared
  12. // but should *not* have their 'value' changed
  13. else if (type == 'checkbox' || type == 'radio')
  14. this.checked = false;
  15. // select elements need to have their 'selectedIndex' property set to -1
  16. // (this works for both single and multiple select elements)
  17. else if (tag == 'select')
  18. this.selectedIndex = -1;
  19. });
  20. };

53: 将表单中的按钮禁用

下面的代码对于ajax操作非常有用,你可以有效的避免用户多次提交数据,个人也经常使用:

禁用按钮:

 
 
  1. $("#somebutton").attr("disabled", true);

启动按钮:

 
 
  1. $("#submit-button").removeAttr("disabled");

可能大家往往会使用.attr(‘disabled’,false);,不过这是不正确的调用。

54: 输入内容后启用递交按钮

这个代码和上面类似,都属于帮助用户控制表单递交按钮。使用这段代码后,递交按钮只有在用户输入指定内容后才可以启动。

 
 
  1. $('#username').keyup(function() {
  2. $('#submit').attr('disabled', !$('#username').val());
  3. });

55: 禁止多次递交表单

多次递交表单对于web应用来说是个比较头疼的问题,下面的代码能够很好的帮助你解决这个问题:

 
 
  1. $(document).ready(function() {
  2. $('form').submit(function() {
  3. if(typeof jQuery.data(this, "disabledOnSubmit") == 'undefined') {
  4. jQuery.data(this, "disabledOnSubmit", { submited: true });
  5. $('input[type=submit], input[type=button]', this).each(function() {
  6. $(this).attr("disabled", "disabled");
  7. });
  8. return true;
  9. }
  10. else
  11. {
  12. return false;
  13. }
  14. });
  15. });

56: 高亮显示目前聚焦的输入框标示

有时候你需要提示用户目前操作的输入框,你可以使用下面代码高亮显示标示:

 
 
  1. $("form :input").focus(function() {
  2. $("label[for='" + this.id + "']").addClass("labelfocus");
  3. }).blur(function() {
  4. $("label").removeClass("labelfocus");
  5. });

57: 动态方式添加表单元素

这个方法可以帮助你动态的添加表单中的元素,比如,input等:

 
 
  1. //change event on password1 field to prompt new input
  2. $('#password1').change(function() {
  3. //dynamically create new input and insert after password1
  4. $("#password1").append("<input type='text' name='password2' id='password2' />");
  5. });

58: 自动将数据导入selectbox中

下面代码能够使用ajax数据自动生成选择框的内容

 
 
  1. $(function(){
  2. $("select#ctlJob").change(function(){
  3. $.getJSON("/select.php",{id: $(this).val(), ajax: 'true'}, function(j){
  4. var options = '';
  5. for (var i = 0; i < j.length; i++) {
  6. options += '<option value="' + j[i].optionValue + '">' + j[i].optionDisplay + '</option>';
  7. }
  8. $("select#ctlPerson").html(options);
  9. })
  10. })
  11. })

59: 判断一个复选框是否被选中

代码很简单,如下:

 
 
  1. $('#checkBox').attr('checked');

60: 使用代码来递交表单

代码很简单,如下:

 
 
  1. $("#myform").submit();

1. 禁止右键点击

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

2. 隐藏搜索文本框文字

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. 在新窗口中打开链接

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 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. 预加载图片

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(?<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. 返回页面顶部功能

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
<A name=top></A>
// the link
<A href="#top">go to top</A>
});

10. 获得鼠标指针XY值

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
<DIV id=XY></DIV>
});

11.返回顶部按钮

你可以利用 animate 和 scrollTop 来实现返回顶部的动画,而不需要使用其他插件。

// Back to top
$('a.top').click(function ({
  $(document.body).animate({scrollTop: 0}, 800);
  return false;
});<!-- Create an anchor tag --><a class="top" href="#">Back to top</a>

改变 scrollTop 的值可以调整返回距离顶部的距离,而 animate 的第二个参数是执行返回动作需要的时间(单位:毫秒)。

12.预加载图片

如果你的页面中使用了很多不可见的图片(如:hover 显示),你可能需要预加载它们:

$.preloadImages = function ({  for (var i = 0; i < arguments.length; i++) {
    $('<img>').attr('src'arguments[i]);
  }
};

$.preloadImages('img/hover1.png''img/hover2.png');

13.检查图片是否加载完成

有时候你需要确保图片完成加载完成以便执行后面的操作:

$('img').load(function ({
  console.log('image load successful');
});

你可以把 img 替换为其他的 ID 或者 class 来检查指定图片是否加载完成。

14.自动修改破损图像

如果你碰巧在你的网站上发现了破碎的图像链接,你可以用一个不易被替换的图像来代替它们。添加这个简单的代码可以节省很多麻烦:

$('img').on('error'function ({
  $(this).prop('src''img/broken.png');
});

即使你的网站没有破碎的图像链接,添加这段代码也没有任何害处。

15.鼠标悬停(hover)切换 class 属性

假如当用户鼠标悬停在一个可点击的元素上时,你希望改变其效果,下面这段代码可以在其悬停在元素上时添加 class 属性,当用户鼠标离开时,则自动取消该 class 属性:

$('.btn').hover(function ({
  $(this).addClass('hover');
  }, function ({
    $(this).removeClass('hover');
  });

你只需要添加必要的CSS代码即可。如果你想要更简洁的代码,可以使用 toggleClass 方法:

$('.btn').hover(function ({ 
  $(this).toggleClass('hover'); 
});

注:直接使用CSS实现该效果可能是更好的解决方案,但你仍然有必要知道该方法。

16.禁用 input 字段

有时你可能需要禁用表单的 submit 按钮或者某个 input 字段,直到用户执行了某些操作(例如,检查“已阅读条款”复选框)。可以添加 disabled 属性,直到你想启用它时:

$('input[type="submit"]').prop('disabled'true);

你要做的就是执行 removeAttr 方法,并把要移除的属性作为参数传入:

$('input[type="submit"]').removeAttr('disabled');

17.阻止链接加载

有时你不希望链接到某个页面或者重新加载它,你可能希望它来做一些其他事情或者触发一些其他脚本,你可以这么做:

$('a.no-link').click(function (e{
  e.preventDefault();
});

18.切换 fade/slide

fade 和 slide 是我们在 jQuery 中经常使用的动画效果,它们可以使元素显示效果更好。但是如果你希望元素显示时使用第一种效果,而消失时使用第二种效果,则可以这么做:

// Fade
$('.btn').click(function ({
  $('.element').fadeToggle('slow');
});
// Toggle
$('.btn').click(function ({
  $('.element').slideToggle('slow');
});

19.简单的手风琴效果

这是一个实现手风琴效果快速简单的方法:

// 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;
});

20.让两个 DIV 高度相同

有时你需要让两个 div 高度相同,而不管它们里面的内容多少。可以使用下面的代码片段:

var $columns = $('.column');var height = 0;
$columns.each(function ({
  if ($(this).height() > height) {
    height = $(this).height();
  }
});
$columns.height(height);

这段代码会循环一组元素,并设置它们的高度为元素中的最大高。
21. 验证元素是否为空

This will allow you to check if an element is empty.

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

22. 替换元素

Want to replace a div, or something else?

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

');
});

23. jQuery延时加载功能

Want to delay something?

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

24. 移除单词功能

Want to remove a certain word(s)?

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

25. 验证元素是否存在于jquery对象集合中

Simply test with the .length property if the element exists.

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

26. 使整个DIV可点击

Want to make the complete div clickable?

$(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与Class之间转换

当改变Window大小时,在ID与Class之间切换

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

28. 克隆对象

Clone a div or an other element.

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

29. 使元素居屏幕中间位置

Center an element in the center of your screen.

$(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. 写自己的选择器

Write your own selectors.

$(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. 统计元素个数

Count an element.

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

32. 使用自己的 Bullets

Want to use your own bullets instead of using the standard or images bullets?

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

33. 引用Google主机上的Jquery类库

Let Google host the jQuery script for you. This can be done in 2 ways.

//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(动画)效果

Disable all jQuery effects

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

35. 与其他Javascript类库冲突解决方案

To avoid conflict other libraries on your website, you can use this jQuery Method, and assign a different variable name instead of the dollar sign.

$(document).ready(function({
   var $jq = jQuery.noConflict();
   $jq('#id').show();
});
 
 
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值