7.字号缩放 越来越多的人长时间的泡网,眼镜的普及率也越来越高,让文字大点,让更多的用户看的更清楚。 <script type="text/javascript"> function doZoom(size) {document.getElementById('zoom').style.fontSize=size+'px';} </script> <span id="zoom">需要指定大小的文字</span> <a href="javascript:doZoom(16)">大</a> <a href="javascript:doZoom(14)">中</a> <a href="javascript:doZoom(12)">小</a> ------------------------------------------------------------------------------- 8.简单的跳转网页代码 如果你要让页面显示3秒钟之后跳转,可以在html代码的<head></head>部分加上这样的代码: <meta http-equiv="refresh" content="3; url=http://www.xuexuexi.com.com"> ------------------------------------------------------------------------------- 9.iframe(嵌入式帧)自适应高度 填写的嵌入地址一定要和本页面在同一个站点上,否则会提示“拒绝访问!”。对跨域引用有权限问题,请查阅其他资料。 <iframe name="guestbook" src="gbook/http://www.xuexuexi.com/Web/index.asp" scrolling=no width="100%" height="100%" frameborder=no ></iframe> ------------------------------------------------------------------------------- 10.跳转菜单新窗口 <select name="select" > <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> ------------------------------------------------------------------------------- 11.flash透明选项 <param name="wmode" value="transparent"> ------------------------------------------------------------------------------- |