加入收藏
<a href=javascript:void(0);οnclick=window.external.AddFavorite(location.href,document.title);>
[加入收藏]
</a>
镜框网页
<table border=15 style=border-style:ridge width=100% height=100%>
<Tr valign=top>
<td>是用table做的,注意修改设置</td>
</tr>
</table>
按钮冻结
<input type=button value=这个按纽不能操作 disabled>
超级注释
<a href= http://www.tool.la title=这个连接是连接到首页的!>一个连接</a>
超级变色
<!--当然如果想叫文字变色可以把bgColor该成fgColor-->
<script language=VbScript>
sub hello
document.bgColor=int(256*256*256*rnd)
end sub
</script>
<!--第二步!注意在body加上这个元素例如把body改成-->
<body οnmοusemοve=hello()>
透明样式
<!--本样式是针对图象而定,运用CSS滤镜的图象滤镜!请务必认真分析以下代码-->
<img src= http://www.tool.la/images/logo.jpg >
<img src= http://www.tool.la/images/logo.jpg style=filter:alpha(opacity=90,style=1)>
<img src= http://www.tool.la/images/logo.jpg style=filter:alpha(opacity=90,style=2)>
<img src= http://www.tool.la/images/logo.jpg style=filter:alpha(opacity=90,style=3)>
<img src= http://www.tool.la/images/logo.jpg style=filter:alpha(opacity=90,style=4)>
观察键值
<body οnkeydοwn=alert("键值是:"+window.event.keyCode)>请单击键盘试试
四种窗口
<input type=button value=alert οnclick=alert("这是第一种")><br>
<input type=button value=confirm οnclick=confirm("这个是第二种")><br>
<input type=button value=prompt οnclick=prompt("这个是第三个","好不好玩呀?")><br>
<input type=button value=open οnclick=window.open(" http://www.tool.la ")>
简易复选
<label for=one>这个语句已经锁定复选框拉</lable><input type=checkbox id=one>
超级大字
<center>
<span style=font-weight:900;font-size:200pt>
忍<br>
<font face=wingdings>N</font>
<br>者
</span></center>
表格变色
<table border=1 width=50 height=40>
<Tr>
<td οnmοuseοver=this.style.backgroundColor="red"οnmοuseοut=this.style.backgroundColor="#dddddd">
文字
</td>
</tr>
</table>
死屏程序
<!--记住运行可以,运行后的按纽你就可要小心点拉!下载文件完毕后可以常识-->
<input type=button value=点了以后这一页就不能动了 οnclick=while(true){window.history.back(-1)}>
定时开窗
<!--注意本次我设定为4000,意思就是4秒钟后打开窗口-->
<script>function l()
{
window.open(" http://www.tool.la ","name","width=500,height=150,border=0")
}
setTimeout("l()",4000)
</script>
控制打印
<input type=button value=打印本页 οnclick=window.print()>
网页热键
<!--本例为单击F12键以后可以实现打印网页功能-->
<script>function look(){
if(event.keyCode=123){window.print()}
}
document.οnkeydοwn=look
</script>你试试单击F12键试试!当然你也可以设定单击后开启窗口或其他功能
显示浏览器版本
<script>document.write("你的浏览器是"+navigator.appName+" "+navigator.appVersion);
</script>
交互文字
<input type=text name=ee>
<input type=button value=写入 οnclick="Info.innerHTML=ee.value">
<p><br>
<center>
<span id=Info style=filter:glow(color=orange);width:100%;font-size:25pt>
</span>
右健失灵
将<body>改为<body οncοntextmenu="self.event.returnValue=false">
Vb写时间
<script language=VBScript>
sub ns()
msgBox "今天日期是: " & date
msgBox "今天时间为: " & time
end sub
</script>
<input type=button value=今日时间 οnclick=ns()>
立体表格
<center>
<table border=1 cellspacing=0><tr><Td bgcolor=navyblue>普通表格</td></tr></table>
<p><table border=1 cellspacing=0><tr><Td bordercolorlight=black bordercolordark=white bgcolor=navyblue>立体表格</td></tr></table>
字符实体
<script>
function yyy()
{
kkk=window.open();
for(var count=33; count<383; count++){
kkk.document.write("<center><table border=1><tr><Td>" + count);
kkk.document.write("</td><td>= </td><td>" + "&" + "#");
kkk.document.write(count + ";</td></tr></table></center>");
}
kkk.document.close();
}
</script>
<input type=button οnclick=yyy() value=运行脚本>
调窗大小
<input type=button value=调节到宽200高300 οnclick=window.resizeTo(200,300)>
修改时间
本站最后一次更新时间为:<script>document.write(document.lastModified)</script>
窗口移动
<input type=button value=左移 οnclick=window.moveBy(-15,0)>
<input type=button value=右移 οnclick=window.moveBy(15,0)>
<input type=button value=上移 οnclick=window.moveBy(0,-15)>
<input type=button value=下移 οnclick=window.moveBy(0,15)>
历史按钮
<input type=button value=后退 οnclick=history.go(-1)>
<input type=button value=刷新 οnclick=history.go(-0)>
<input type=button value=前进 οnclick=history.go(+1)>
加入频道
<a href=javascript:window.external.addChannel("typhoon.cdf")>加入频道</a>
显示时间
<script>a=new Date();document.write("现在时间是"+a.toLocaleString()+"");</script>