亚洲啪啪,久久精品一区二区日本,欧美字幕一区,日韩AV高清在线观看

中山php|最優(yōu)網(wǎng)絡中山做網(wǎng)站 中山php建站

最優(yōu)良人

2011/08/06 at 11:26

禁止頁面使用右鍵的js代碼

之前有一個客戶希望網(wǎng)站的頁面禁用右鍵的點擊,希望防止圖片被下載(其實感覺沒什么必要,懂一點網(wǎng)站知識的人還是可以輕易下載的),下面是js禁止右鍵的代碼:

function click(e) {
if (document.all) {
if (event.button==1||event.button==2||event.button==3) {
oncontextmenu='return false';
}
}
if (document.layers) {
if (e.which == 3) {
oncontextmenu='return false';
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;")

var travel=true
var hotkey=17 /* hotkey即為熱鍵的鍵值,是ASII碼,這里99代表c鍵 */
if (document.layers)
document.captureEvents(Event.KEYDOWN)
function gogo(e)
{ if (document.layers) {
if (e.which==hotkey&&travel){
alert("操作錯誤.或許是您按錯了按鍵!"); } }
else if (document.all){
if (event.keyCode==hotkey&&travel){ alert("操作錯誤.或許是您按錯了按鍵!"); }}
}

document.onkeydown=gogo

標簽:
comments Comments (213)    -
2011/08/06 at 08:48

博客搬家,一切回到解放前重新開始

由于之前博客所在的空間代理商倒閉跑路,導致原博客內(nèi)容全部丟失,痛定思痛,決心把博客也一起安家在這里,一起重新開始吧。go

comments Comments (204)    -