禁止选择文本和禁用右键 v1.0

var zhonghao={
    //绑定事件
    myAddEvent: function(obj, sEvent, fn){if(obj.attachEvent){obj.attachEvent(‘on‘+sEvent, fn);}else{obj.addEventListener(sEvent, fn, false);}},
    //禁止选择文本
    disableselect:function(e){
        var omitformtags=["input", "textarea", "select"]
        omitformtags=omitformtags.join("|")
        if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
        return false
    },
    reEnable:function(){
        return true
    },

    //禁用右键 

    stop:function(){
    return false; 

    }    

}

zhonghao.myAddEvent(window,"load",function(){

    //禁止选择文本

    if (typeof document.onselectstart!="undefined")
        document.onselectstart=new Function ("return false");
    else{
        document.onmousedown=zhonghao.disableselect ;
        document.onmouseup=zhonghao.reEnable ;
    }

    //禁止右键

    document.oncontextmenu=zhonghao.stop;
})
时间: 2024-10-24 17:39:14

禁止选择文本和禁用右键 v1.0的相关文章

禁止选择文本和禁用右键 v2.0

禁止鼠标右键(注:在火狐浏览器没有起到效果作用) <script> function stop() { return false }; document.oncontextmenu = stop; javascript: ; </script>

[转]CSS禁止选择文本功能

有时候,我们为了用户体验,需要禁用选择文本功能.这需要用到一个CSS属性:user-select,user-select的文档点这里 user-select有两个值:none:用户不能选择文本text:用户可以选择文本 需要注意的是:user-select并不是一个W3C的CSS标准属性,浏览器支持的不完整,需要对每种浏览器进行调整 body{ -moz-user-select: none; /*火狐*/ -webkit-user-select: none; /*webkit浏览器*/ -ms-

禁止选择文本

这是通过CSS样式来实现的禁止用鼠标选择功能:unselectable为IE准备,onselectstart为Chrome.Safari准备,-moz-user-select是FF的   css style:html,body{-moz-user-select: none; -khtml-user-select: none; user-select: none;}<div unselectable="on" onselectstart="return false;&qu

JS input文本框禁用右键和复制粘贴功能的代码

代码如下: 1 function click(e) 2 { 3 if (document.all) 4 { 5 if (event.button==1||event.button==2||event.button==3) 6 { 7 oncontextmenu='return false'; 8 } 9 } 10 if (document.layers) 11 { 12 if (e.which == 3) 13 { 14 oncontextmenu='return false'; 15 } 16

Web HTML页面,内容禁止选择、复制、右键

<body leftmargin=0 topmargin=0 oncontextmenu='return false' ondragstart='return false' onselectstart ='return false' onselect='document.selection.empty()' oncopy='document.selection.empty()' onbeforecopy='return false' onmouseup='document.selection.e

禁止选择文本样式

.noselect { -webkit-touch-callout: none; /* iOS Safari */ -webkit-user-select: none; /* Chrome/Safari/Opera */ -khtml-user-select: none; /* Konqueror */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-se

JS禁用右键,禁用打印,防止另存为,IE浏览器识别(转载)

oncontextmenu="window.event.returnValue=false" style="overflow-y: hidden; overflow-x: hidden"ajs9     leftmargin="0" topmargin="0"<body oncontextmenu="return false"></body><!--禁止网页另存为: -->

onselectstart禁止选择

在做一些动画效果时,因为有文本的存在,会无意选择到文本,就需要禁止选择文本 可以在标签上加 也可以在js中写 element.onselectstart=function(){} 注意:次事件对input和textarea无效 onselect  只对input和textarea生效,,选中文本时执行函数 element.onselect=function(){}

jquery禁止复制、禁用右键、文本选择功能、复制按键

本文章介绍的jquery禁用右键.文本选择功能.复制按键的实现它可以兼容浏览器有IE.firefox.谷歌浏览器,各位朋友可参考.IE浏览器是指以IE为核心的浏览器也支持,有360,QQ等 代码如下: 1 //禁用右键.文本选择功能.复制按键 2 $(document).bind("contextmenu",function(){return false;}); 3 $(document).bind("selectstart",function(){return f