如何设置网站屏蔽右键菜单,屏蔽复制,屏蔽选中
2024-07-04 10:01:34
建站教程
0
网站屏蔽鼠标右键,可以屏蔽复制,屏蔽选中,屏蔽剪切。下面是青青模板网整理的关于如何屏蔽鼠标右键的解决方案和思路,方便新手站长们在利用帝国cms建网站的时候,可以少走一些弯路。
将下列代码复制粘贴到模板-公共模板变量-底部即可
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76 |
<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; } } //屏蔽粘贴 document.onpaste = 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; } } //屏蔽复制 document.oncopy = 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; } } //屏蔽剪切 document.oncut = 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; } } //屏蔽选中 document.onselectstart = 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> |
以上就是关于帝国cms使用教程中"如何设置网站屏蔽右键菜单,屏蔽复制,屏蔽选中"的全部内容,如果有遇到帝国cms使用教程其他问题的,可以在评论留言,或者加微信咨询。
赞一个
()
相关文章
广告