网页设计常用代码(一)
1、禁止页面正文内容被选取
<body οncοntextmenu="return false" οndragstart="return false"
onselectstart ="return false" οnselect="document.selection.empty()"
οncοpy="document.selection.empty()" onbeforecopy="return
onselectstart ="return false" οnselect="document.selection.empty()"
οncοpy="document.selection.empty()" onbeforecopy="return
false"οnmοuseup="document.selection.empty()">
2、消除ie6自动出现的图像工具栏,设置 GALLERYIMG属性为false或no .
<IMG SRC="mypicture.jpg" HEIGHT="100px" WIDTH="100px"
GALLERYIMG="no">
GALLERYIMG="no">
……
1、禁止页面正文内容被选取
<body οncοntextmenu="return false" οndragstart="return false"
onselectstart ="return false" οnselect="document.selection.empty()"
οncοpy="document.selection.empty()" onbeforecopy="return
onselectstart ="return false" οnselect="document.selection.empty()"
οncοpy="document.selection.empty()" onbeforecopy="return
false"οnmοuseup="document.selection.empty()">
2、消除ie6自动出现的图像工具栏,设置 GALLERYIMG属性为false或no .
<IMG SRC="mypicture.jpg" HEIGHT="100px" WIDTH="100px"
GALLERYIMG="no">
GALLERYIMG="no">
3、防止点击空链接时,页面往往重置到页首端。
代码"javascript :void(null)"代替原来的"#"标记
4、如何避免别人把你的网页放在框架中
<script language="javascript"><!--if (self!=top) --><
/script>
/script>
5、页面定时刷新
<meta http-equiv="Refresh" content="秒" >
6、页面定时转向新的地址
<meta http-equiv="refresh" content="秒;URL=url">
7、关闭窗口,这个是不会弹出提示直接关的:
把如下代码加入<body>区域中
<OBJECT id=closes type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<param name="Command" value="Close">
</object>
<script language="javascript">function shutwin()</script>
<a href="javascript :shutwin();">关闭本窗口</a>
来源:希赛社区 作者:LX_FLYER
0
收藏
推荐专栏更多
猜你喜欢
谢博文的啊啊
谁是全能王?Android,Windows,iCloud?
python爬取百度图片代码
centos部署配置gerrit+gitlab实现代码的review与自动同步
git修改代码查看文件差异-移除代码-重命名文件
Zabbix监控之邮件发送失败-smtp-server: 错误代码550与535
DOM4J介绍与代码示例
Java线程:线程的调度-休眠
我们不得不面对的中年职场危机
04.spring security oauth2认证中心 集成zuul网关的代码分析
Jenkins 持续集成平台构建之通过svn提交代码
职场终极密籍--记我的职业生涯
智能合约编程语言-solidity快速入门(下)
Android中适配器的notifyDataSetChanged()为何有时不刷新
如何在Spring Boot中使用Hibernate Natural ID
从hook开始聊聊那些windows内核数据结构
Scala的actor
正则性能调优
windows下kafka+ELK的日志系统
Nginx下,请求本机另外Host很慢
扫一扫,领取大礼包
转载于:https://blog.51cto.com/mingxinzhicheng/79
Ctrl+Enter 发布
发布
取消