非常好的js代码

非常好的js代码

控制横向和纵向滚动条的显隐?
<body> 去掉x轴
<body> 去掉y轴
<body scroll="no">不显

非常好的js代码

表格变色
<TD
onmouseout="this.style.backgroundColor=''"
style="CURSOR: hand">

非常好的js代码

禁止复制,鼠标拖动选取
<body ondragstart=window.event.returnValue=false oncontextmenu=window.event.returnValue=false onselectstart=event.returnValue=false>

非常好的js代码

普通iframe页面
<iframe src="https://www.jb51.net/main.htm" scrolling="Auto" frameborder="0"></iframe>

非常好的js代码

iframe自适应高度
<iframe src="https://www.jb51.net/index.asp" frameborder=false scrolling="auto" frameborder=no ></iframe>

非常好的js代码

IE地址栏前换成自己的图标&可以在收藏夹中显示出你的图标
<link href="https://www.jb51.net/favicon.ico">
<link href="https://www.jb51.net/favicon.ico">

非常好的js代码

字号缩放
越来越多的人长时间的泡网,眼镜的普及率也越来越高,让文字大点,让更多的用户看的更清楚。
<script type="text/javascript">
function doZoom(size)
{document.getElementById('zoom').style.fontSize=size+'px';}
</script>
<span>需要指定大小的文字</span>
<a href="javascript:doZoom(16)">大</a> <a href="javascript:doZoom(14)">中</a> <a href="javascript:doZoom(12)">小</a>

非常好的js代码

select挡住div的解决方法
在div里加入下面的代码,根据需要调整就可以了。
<iframe src="javascript:false" scrolling="no" frameborder="0">
</iframe>

非常好的js代码

iframe(嵌入式帧)自适应高度
填写的嵌入地址一定要和本页面在同一个站点上,否则会提示“拒绝访问!”。对跨域引用有权限问题,请查阅其他资料。
<iframe src="https://www.jb51.net/gbook/index.asp" scrolling=no frameborder=no></iframe>

非常好的js代码

跳转菜单新窗口
<select onchange="window.open(this.options[this.selectedIndex].value)">
<option value="http://www.microsoft.com/ie"> Internet Explorer</option>
<option value="http://www.microsoft.com"> Microsoft Home</option>
<option value="http://msdn.microsoft.com"> Developer Network</option>
</select>

非常好的js代码

flash透明选项
<param value="transparent">

非常好的js代码

添加到收藏夹和设为首页
添加到收藏夹:
<a href="javascript:window.external.addFavorite('http://链接','说明');">添加到收藏夹</a>
设为首页:
<a href=# onclick=this.style.behavior='url(#default#homepage)';this.setHomePage ('http://链接');>设为首页</a>

非常好的js代码

记录并显示网页的最后修改时间
<script language=JavaScript>
document.write("最后更新时间: " + document.lastModified + "")
</script>

非常好的js代码

节日倒计时
<Script Language="JavaScript">
   var timedate= new Date("October 1,2002");
   var times= "国庆节";
   var now = new Date();
   var date = timedate.getTime() - now.getTime();
   var time = Math.floor(date / (1000 * 60 * 60 * 24));
   if (time >= 0)
   document.write( "现在离"+times+"还有: "+time +"天")
</Script>

非常好的js代码

加在HEAD里
禁止缓存
<meta http-equiv="Expires" CONTENT="0">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta http-equiv="Pragma" CONTENT="no-cache">

非常好的js代码

让IFRAME框架内的文档的背景透明
<iframe src="about:<body>" allowtransparency></iframe>

非常好的js代码

打开窗口即最大化
<script language="JavaScript">
<!-- Begin
self.moveTo(0,0)
self.resizeTo(screen.availWidth,screen.availHeight)
// End -->
</script>

非常好的js代码

加入背景音乐
<bgsound src="https://www.jb51.net/mid/windblue[1].mid" loop="-1"> 只适用于IE
<embed src="https://www.jb51.net/music.mid" autostart="true" loop="true" hidden="true"> 对Netscape ,IE 都适用

非常好的js代码

滚动
<marquee direction=up height=146 onmouseout=start() onmouseover=stop() scrollAmount=2>滚动信息
</marquee>

非常好的js代码

防止点击空链接时,页面往往重置到页首端
代码“javascript:void(null)”代替原来的“#”标记

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjjxzs.html