当前位置: 编程技术>WEB前端
jquery禁用右键示例
来源: 互联网 发布时间:2014-08-25
本文导语: 禁用右键 代码如下:$(function(){ $(document).bind("contextmenu",function(e){ return false; });}); //js方式function stop(){ return false;}document.oncontextmenu=stop;
禁用右键
代码如下:
$(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
//js方式
function stop(){
return false;
}
document.oncontextmenu=stop;