网页小技巧一
避免别人把你的网页放在框架中
<head></head>之间加入以下代码:
<script language=“javascript”>
if (self!=top){top.location=self.location;}
</script>
自动刷新跳转
<meta httpequiv="refresh" content="15;url=cesi.htm">
刷新当前页面
window.location.reload()
禁用按钮
function add(){
document.getElementById("bb").setAttribute ("disabled","disabled");}
<input id="bb" type="button" value="button" onclick="add()"/>
隐藏js错误
<head>加入
<script language="JavaScript">
function killErrors() {
return true;}
window.onerror = killErrors;
</script>
防止带脚本的空链接回到页面顶端
href="javascript:void(null)"
网页小图标实现
<link rel="shortcut icon" href="http://maibao001.com/static/icon/favicon.ico" />
解决背景图片不跟随内容滚动
body“Background”属性设定“Attachment”(附件)为“fixed”。其中scroll代表默认使用的滚动显示。
网页自定义光标实现
<body style="cursor: url(http://203.73.125.205/~liangmi2/farmfrog01.cur`)">
网站整站灰色调实现
<style>
html{filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);}
</style>
有一些网站FLASH动画的颜色不能被CSS滤镜控制,可以在FLASH代码的<object …>和</object>之间插入:
<param value="false" name="menu"/>
<param value="opaque" name="wmode"/>
定义最小高度
min-height:100px !important; height:auto!important; height:100px
或
min-height:500px;_height:500px;