1.点击关闭窗口 <a href="javascript.:top.window.close();">点击关闭窗口</a>! 2.如何去掉主页右面的滚动条? <body scroll="no"> <body style="overflow-y:hidden"> 3.如何做到让一个网页自动关闭. <html> <head> <OBJECT id=closes type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"> <param name="Command" value="Close"> </object> </head> <body > 这个窗口会在10秒过后自动关闭,而且不会出现提示. </body> 4.如何在不刷新页面的情况下刷新css? <style> button{ color:#000000;} </style> <button nclick=document.styleSheets[0].rules[0].style.color=‘‘‘‘red‘‘‘‘>点击按钮直接修改style标签里button选择符使按钮改为 红色</button> 5.如何让网页自动刷新? 在head部记入<META. HTTP-EQUIV="Refresh" c>其中20为20秒后自动刷新,你可以更改为任意值。 6.如何让页面自动刷新? 方法一,用refresh HTML 代码片段如下: <head> <meta. http-equiv="refresh" c> </head> 7.表示刷新时间 [Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行] 方法二,使用setTimeout控制 <img src=/logo.webp> <script> function rl(){ document.location.reload() } setTimeout(rl,2000) </SCRIPT> 8.如何让超链接没有下划线 在源代码中的<HEAD>…</HEAD>之间输入如下代码: <style. type="text/css"> <!-- a { text-decoration: none} --> </style> 9.如何去掉IE的上下滚动条? <body style=‘‘‘‘overflow:scroll;overflow-y:hidden‘‘‘‘> </body> 10.才能把RealPlayer文件在网页做一个试听连接? <embed height=25 src=51js.rm type=audio/x-pn-realaudio-plugin width=50 autostart="false" c> 11.如何用html实现浏览器上后退按钮的功能? <a href="java script.:history.go(-1)">点击后退</a> 或者 <script> history.back() </SCRIPT> |