Jquery中文网 www.jquerycn.cn
Jquery中文网 >  脚本编程  >  php  >  正文 收集的精典代码

收集的精典代码

发布时间:2017-10-22   编辑:www.jquerycn.cn
jquery中文网为您提供收集的精典代码等资源,欢迎您收藏本站,我们将为您提供最新的收集的精典代码资源
收集的精典代码
1. oncontextmenu="window.event.return&#118alue=false" 将彻底屏蔽鼠标右键
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
2. <body onselectstart="return false"> 取消选取、防止复制
3. onpaste="return false" 不准粘贴
4. oncopy="return false;" oncut="return false;" 防止复制
5. <link rel="Shortcut Icon" href="favicon.ico"> IE地址栏前换成自己的图标
6. <link rel="Bookmark" href="favicon.ico"> 可以在收藏夹中显示出你的图标
7. <input style="ime-mode:Disabled"> 关闭输入法
8. 永远都会带着框架
<script language="&#106avascript"><!--
if (window == top)top.location.href = "frames.htm"; file&#58//frames.htm为框架网页
// --></script>
9. 防止被人frame
<SCRIPT LANGUAGE=&#106avascript><!--
if (top.location != self.location)top.location=self.location;
// --></SCRIPT>
10. <noscript><iframe src=*.html></iframe></noscript> 网页将不能被另存为
11. <input type=button &#118alue=查看网页源代码
&#111nclick="window.location = 'view-source:' 'http://www.jquerycn.cn/&#39;">
12. 怎样通过asp的手段来检查来访者是否用了代理
<% if Request.ServerVariables("HTTP_X_FORWARDED_FOR")<>"" then
response.write "<font color=#FF0000>您通过了代理服务器,"& _
"真实的IP为"&Request.ServerVariables("HTTP_X_FORWARDED_FOR")
end if
%>
13. 取得控件的绝对位置
file&#58//&#106avascript
<script language="&#106avascript">
function getIE(e){
var t=e.offsetTop;
var l=e.offsetLeft;
while(e=e.offsetParent){
t =e.offsetTop;
l =e.offsetLeft;
}
alert("top=" t " left=" l);
}
</script>
file&#58//VBScript
<script language="VBScript"><!--
function getIE()
dim t,l,a,b
set a=document.all.img1

您可能感兴趣的文章:
收集的精典代码
js自适应滑动门代码
jquery 动态调整textarea高度
python3字典合并怎么做?
如何利用Python进行垃圾分类
css 自适应宽度圆角滑动门
【精品推荐】web开发人员应该知道的31个jQuery模态对话框
一文读懂列表解析、字典解析、集合解析
基于XHTML标准DIV CSS布局对SEO的影响
java中HotSpot算法及垃圾收集器简介

[关闭]