jQ進階篇--[譯]五個有用的jQuery小技巧

1.禁用鼠標右鍵

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

固然jquery1.7版本之後bind()函數推薦用on()來代替。css

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 ,在高版本庫中不要使用該方法。jquery

// 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....web

相關文章
相關標籤/搜索