DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JS input文本框禁用右鍵和復制粘貼功能的代碼
JS input文本框禁用右鍵和復制粘貼功能的代碼
編輯:關於JavaScript     
復制代碼 代碼如下:
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 trxdyel=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 && trxdyel)
{
alert('操作錯誤.或許是您按錯鍵了!');
}
}
else if (document.all)
{
if (event.keyCode==hotkey&&trxdyel){ alert('操作錯誤.或許是您按錯鍵了!'); }}
}
document.onkeydown=gogo

將以上JS代碼寫到JS文件中取名為xp.js並放入Script文件夾中,引用時需要注意設置Charset=“gb2312”,不然提示出的信息會是亂碼。頁面引用:
復制代碼 代碼如下:
<script src="../Script/xp.js" type="text/javascript" charset="gb2312"></script>

1. 將徹底屏蔽鼠標右鍵
復制代碼 代碼如下:
oncontextmenu="window.event.returnValue=false"
<table border oncontextmenu=return(false)> <td> no</table> 可用於Table
function click() {
if (event.button==2) {
alert('對不起,本頁禁用右鍵!')
}
}
document.onmousedown=click

2.取消選取、防止復制
復制代碼 代碼如下:<body onselectstart="return false">

3. 不准粘貼
復制代碼 代碼如下:onpaste="return false"

4.防止復制
復制代碼 代碼如下:oncopy="return false;" oncut="return false;"

JavaScript 快捷鍵設置實現代碼
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved