1.禁止頁面的右鍵菜單
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false
})
})
2.新窗口打開頁面
//<a rel="external">open link</a>
$(document).ready(function(){
$("a[rel$='external']").click(function(){
this.target='_blank';
})
})
3.滾動(dòng)到指定位置滑動(dòng)動(dòng)畫
jQuery.fn.scrollTo = function(speed){
var targetOffset = $(this).offset().top;
$(html,body).stop().animate({scrollTop: targetOffset}, speed);
}
//使用
$(#goTop).click(function(){
$(body).scrollTo(500);
})
4.檢測(cè)鼠標(biāo)的右鍵和左鍵
$(document).ready(function(){
$("#demo").mousedown(function(e){
alert(e.which); //1 = 鼠標(biāo)左鍵 入客, 2 = 鼠標(biāo)中鍵 憋飞,3 = 鼠標(biāo)右鍵
})
})
5.更新中ing
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者