1.自动跳转
<meta http-equiv=Refresh content="1; url=manage_add.asp">
2. 不准网页被另存为
<noscript><iframe src=*.html></iframe></noscript> 网页将不能被另存为
3. 获得一个窗口的大小
document.body.clientWidth,document.body.clientHeight
document.body.offsetWidth,document.body.offsetHeight
有时还需要知道window.screenTop,window.screenLeft
4. 关闭输入法
<input style="ime-mode:disabled">
5. 将彻底屏蔽鼠标右键
oncontextmenu="window.event.returnvalue=false"
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
6. 不准粘贴
onpaste="return false"
7. 取消选取、防止复制
<body onselectstart="return false">
8. 防止复制
oncopy="return false;" oncut="return false;"
9. IE地址栏前换成自己的图标
<link rel="Shortcut Icon" href="favicon.ico">
10. 在收藏夹中显示出你的图标
<link rel="Bookmark" href="favicon.ico">
11. 永远都会带着框架
<script language="javascript"><!--
if (window == top)top.location.href = "frames.htm"; file://frames.htm为框架网页
// --></script>
12. 防止被人frame
<SCRIPT LANGUAGE=javascript><!--
if (top.location != self.location)top.location=self.location;
// --></SCRIPT>
13. <input type=button value=查看网页源代码
onclick="window.location = 'view-source:'+ 'http://www.csdn.net/';">
14. 怎样通过asp的手段来检查来访者是否用了代理
<% if Request.ServerVariables("HTTP_X_FORWARDED_FOR")<>"" then
response.write "<font color=#FF0000>您通过了代理服务器,"& _
"真实的IP为"&Request.ServerVariables("HTTP_X_FORWARDED_FOR")
end if
%>
15. 取得控件的绝对位置
file://javascript
<script language="javascript">
function getIE(e){
var t=e.offsetTop;
var l=e.offsetLeft;
while(e=e.offsetParent){
t+=e.offsetTop;
l+=e.offsetLeft;
}
alert("top="+t+"\nleft="+l);
}
</script>
file://VBScript
<script language="VBScript"><!--
function getIE()
dim t,l,a,b
set a=document.all.img1
t=document.all.img1.offsetTop
l=document.all.img1.offsetLeft
while a.tagName<>"BODY"
set a = a.offsetParent
t=t+a.offsetTop
l=l+a.offsetLeft
wend
msgbox "top="&t&chr(13)&"left="&l,64,"得到控件的位置"
end function
--></script>
16. 光标是停在文本框文字的最后
<script language="javascript">
function cc()
{
var e = event.srcElement;
var r =e.createTextRange();
r.moveStart('character',e.value.length);
r.collapse(true);
r.select();
}
</script>
<input type=text name=text1 value="123" onfocus="cc()">
17.收藏本站
<a onClick="window.external.addFavorite('http://www.yy0736.com','夜鹰网站')" href="http://www.yy0736.com" target="_blank" title="夜鹰网站">收藏本站</a>
18. 设为主页
<a href="javascript:///" onClick="this.style.behavior='url(#default#homepage)';
this.setHomePage('http://www.yyy0736.com/')">设为主页</a>
19. 改变网页字体大小
在要缩放字体的表前加
<SCRIPT language=JavaScript>
<!--
function doZoom(size){
document.getElementById('zoom').style.fontSize=size+'pt'
}
// -->
</SCRIPT>
表内加:
<td id=zoom> <b>查看:</b>
[<a href="javascript:doZoom(12)">大字体</a>
<a href="javascript:doZoom(10.5)">中字体</a>
<a href="javascript:doZoom(9)">小字体</a>]
<meta http-equiv=Refresh content="1; url=manage_add.asp">
2. 不准网页被另存为
<noscript><iframe src=*.html></iframe></noscript> 网页将不能被另存为
3. 获得一个窗口的大小
document.body.clientWidth,document.body.clientHeight
document.body.offsetWidth,document.body.offsetHeight
有时还需要知道window.screenTop,window.screenLeft
4. 关闭输入法
<input style="ime-mode:disabled">
5. 将彻底屏蔽鼠标右键
oncontextmenu="window.event.returnvalue=false"
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
6. 不准粘贴
onpaste="return false"
7. 取消选取、防止复制
<body onselectstart="return false">
8. 防止复制
oncopy="return false;" oncut="return false;"
9. IE地址栏前换成自己的图标
<link rel="Shortcut Icon" href="favicon.ico">
10. 在收藏夹中显示出你的图标
<link rel="Bookmark" href="favicon.ico">
11. 永远都会带着框架
<script language="javascript"><!--
if (window == top)top.location.href = "frames.htm"; file://frames.htm为框架网页
// --></script>
12. 防止被人frame
<SCRIPT LANGUAGE=javascript><!--
if (top.location != self.location)top.location=self.location;
// --></SCRIPT>
13. <input type=button value=查看网页源代码
onclick="window.location = 'view-source:'+ 'http://www.csdn.net/';">
14. 怎样通过asp的手段来检查来访者是否用了代理
<% if Request.ServerVariables("HTTP_X_FORWARDED_FOR")<>"" then
response.write "<font color=#FF0000>您通过了代理服务器,"& _
"真实的IP为"&Request.ServerVariables("HTTP_X_FORWARDED_FOR")
end if
%>
15. 取得控件的绝对位置
file://javascript
<script language="javascript">
function getIE(e){
var t=e.offsetTop;
var l=e.offsetLeft;
while(e=e.offsetParent){
t+=e.offsetTop;
l+=e.offsetLeft;
}
alert("top="+t+"\nleft="+l);
}
</script>
file://VBScript
<script language="VBScript"><!--
function getIE()
dim t,l,a,b
set a=document.all.img1
t=document.all.img1.offsetTop
l=document.all.img1.offsetLeft
while a.tagName<>"BODY"
set a = a.offsetParent
t=t+a.offsetTop
l=l+a.offsetLeft
wend
msgbox "top="&t&chr(13)&"left="&l,64,"得到控件的位置"
end function
--></script>
16. 光标是停在文本框文字的最后
<script language="javascript">
function cc()
{
var e = event.srcElement;
var r =e.createTextRange();
r.moveStart('character',e.value.length);
r.collapse(true);
r.select();
}
</script>
<input type=text name=text1 value="123" onfocus="cc()">
17.收藏本站
<a onClick="window.external.addFavorite('http://www.yy0736.com','夜鹰网站')" href="http://www.yy0736.com" target="_blank" title="夜鹰网站">收藏本站</a>
18. 设为主页
<a href="javascript:///" onClick="this.style.behavior='url(#default#homepage)';
this.setHomePage('http://www.yyy0736.com/')">设为主页</a>
19. 改变网页字体大小
在要缩放字体的表前加
<SCRIPT language=JavaScript>
<!--
function doZoom(size){
document.getElementById('zoom').style.fontSize=size+'pt'
}
// -->
</SCRIPT>
表内加:
<td id=zoom> <b>查看:</b>
[<a href="javascript:doZoom(12)">大字体</a>
<a href="javascript:doZoom(10.5)">中字体</a>
<a href="javascript:doZoom(9)">小字体</a>]