网上有很多注重版权的网站为了防止随意的复制粘贴,有的站长们禁用了右键的功能就是防止随意复制内容又不留版权信息的,这里小编提供一个纯jquery写的禁用右键的功能,当然网上有很多这类型的功能这里就提供一个简单的方法:
[code]<script type=”text/javascript”>
document.oncontextmenu = function (event){
if(window.event){
event = window.event;
}try{
var the = event.srcElement;
if (!((the.tagName == “INPUT” && the.type.toLowerCase() == “text”) || the.tagName == “TEXTAREA”)){
return false;
}
return true;
}catch (e){
return false;
}
}
</script>[/code]