Board logo

標題: [網頁編寫] 圖片禁用鼠標右鍵代碼 [打印本頁]

作者: admin    時間: 2009-6-4 14:35     標題: 圖片禁用鼠標右鍵代碼

<script language="JavaScript1.2">
var clickmessage="本站圖片禁用右鍵!"
function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
}
function associateimages(){
for(i=0;i<document.images.length;i++)
document.images.onmousedown=disableclick;
}
if (document.all)
document.onmousedown=disableclick
else if (document.layers)
associateimages()
</script>
作者: zs02190198    時間: 2009-7-21 14:20

谢谢楼主了!
作者: lovedong    時間: 2010-6-10 15:34

又学习了,真感谢了
作者: yuqinglu    時間: 2010-6-11 18:58

非常感谢,哈哈




歡迎光臨 AMIGOBBS 論壇 (暫停運作) (http://www.amigobbs.com/) Powered by Discuz! 6.0.0