jQ进阶篇--[译]五个有用的jQuery小技巧

1.禁用鼠标右键

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

当然jquery1.7版本以后bind()函数推荐用on()来代替。

2.让内容闪烁起来

$.fn.flash = function(color, duration) {
    var current = this.css('color');
    this.animate( {color: 'rgb(' + color + ')'}, duration / 2);
    this.animate( {color: current}, duration / 2);
}
$('#someid').flash('255,0,0', 1000);

3.DOM加载完成的简写形式

$(function() {
    // document is ready..
})

4.探测浏览器

jQuery 从 1.9 版开始,移除了 $.browser 和 $.browser.version ,在高版本库中不要使用该方法。

// Safari
if( $.browser.safari ){
    //do something
}
//Above IE6
if ($.browser.msie && $.browser.version > 6 ){
    //do something
}
// IE6 and below
if ($.browser.msie && $.browser.version < 6 )  {
    //do something
}

5.判断元素是否存在

if($("#someDiv").length) {
    // yes it does, do something...
}

原文地址:http://www.webdeveloperjuice….

    原文作者:风雨后见彩虹
    原文地址: https://segmentfault.com/a/1190000000514958
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞