网站设计中常用的技巧
彻底屏蔽鼠标右键:
oncontextmenu=”window.event.returnValue=false”
或者oncontextmenu=”return false”;
取消选区、防止复制
<body onselectstart=”return false”>
防止复制
oncopy=”return false;” oncut=”return false”
防止粘贴
onpaste=”return false”
IE地址栏变成自己的网站图标
<link rel=”Shortcut Icon” href=”favicon.ico”>
在收藏夹显示你的图标
<link rel=”Bookmark” href=”favicon.ico”>
link的其他常见使用css引入: <link rel=”stylesheet” type=”text/css” href=”xxx.css” />
让弹出窗口总是在最上面
<body onblur=”this.focus();”>
不要滚动条,让竖条没有
<body style=”overflow:scroll;overflow-y:hidden”>
不要滚动条,让横条没有
<body style=”overflow:scroll;overflow-x:hidden”>
两个滚动条都没有
<body scroll=”no”>
去掉图片链接点击后,图片周围的虚线
<a href=”#” onfocus=”this.blur()”><img src=”/blog/logo.jpg”></a>
enter键让光标移动到下一个输入框
<input onkeydown=”if(event.keyCode==13)event.keyCode=9”>
页面自动刷新
<meta http-equiv=”refresh” content=”20”> 每隔20秒刷新一次
页面自动跳转
<meta http-equiv=”refresh” content=”20;url=http://www.baidu.com”>