废话不说 直接代码,有问题可以一起交流
1. 禁止右键点击
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
2. 隐藏搜索文本框文字
Hide when clicked in the search field, the ...
分类:
Web程序 时间:
2016-05-24 12:13:50
阅读次数:
246
It's very simple: <body ondragstart="window.event.returnValue=false" oncontextmenu="window.event.returnValue=false" onselectstart="event.returnValue=f ...
分类:
其他好文 时间:
2016-05-16 17:44:54
阅读次数:
168
1. 禁止右键点击 2. 隐藏搜索文本框文字 3. 在新窗口中打开链接 4. 检测浏览器 注: 在版本jQuery 1.4中,$.support 替换掉了$.browser 变量 5. 预加载图片 This piece of code will prevent the loading of all ...
分类:
Web程序 时间:
2016-04-27 18:32:02
阅读次数:
268
1.禁止右键点击$(document).ready(function(){$(document).bind("contextmenu",function(e){returnfalse;});});2.隐藏搜索文本框文字Hidewhenclickedinthesearchfield,thevalue.(examplecanbefoundbelowinthecommentfields)$(document).ready(function(){$("input.text1").val(..
分类:
Web程序 时间:
2016-04-22 16:50:34
阅读次数:
210
1. 将彻底屏蔽鼠标右键 用于Table 2. 取消选取、防止复制 3. 不准粘贴 4. 防止复制 5. IE地址栏前换成自己的图标 6. 可以在收藏夹中显示出你的图标 7. 关闭输入法 8. 永远都会带着框架 9. 防止被人frame 10. 网页将不能被另存为 11. 查看网页源代码 12.删除 ...
分类:
Web程序 时间:
2016-04-20 23:25:06
阅读次数:
260
去除手机中按钮点击默认有灰色背景: *{ tap-highlight-color:rbga(0, 0, 0, 0); -webkit-tap-highlight-color:rgba(0,0,0,0);} // 禁止右键和手指长按事件 document.oncontextmenu = new Fun ...
分类:
Web程序 时间:
2016-04-19 11:59:05
阅读次数:
200
收集的35个 jQuery 小技巧/代码片段,可以帮你快速开发. 1. 禁止右键点击 2. 隐藏搜索文本框文字 3. 在新窗口中打开链接 4. 检测浏览器 注: 在版本jQuery 1.4中,$.support 替换掉了$.browser 变量 5. 预加载图片 This piece of code
分类:
Web程序 时间:
2016-03-22 12:04:30
阅读次数:
212
网页如何禁止鼠标右键:在某些情况下需要禁止鼠标右键,比如有些网站为了防止复制黏贴进而禁止右键(这个对于稍稍有点专业知识的人来说都是无效的)。既然有这方面的需求,那就提供一下实现此效果的代码:原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&t...
分类:
Web程序 时间:
2015-12-19 12:27:20
阅读次数:
171
1. 禁止右键点击$(document).ready(function(){$(document).bind("contextmenu",function(e){returnfalse;});});2. 隐藏搜索文本框文字Hidewhenclickedinthesearchfield,thevalu...
分类:
Web程序 时间:
2015-12-14 01:22:50
阅读次数:
210