该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
23. 永远都会带着框架
if (window == top)top.location.href = "frames.htm"; //frames.htm为框架网页
// -->
24. 防止被人frame
if (top.location != self.location)top.location=self.location;
// -->
25. 网页将不能被另存为
26. 查看网页源代码
27.删除时确认
28.屏蔽功能键Shift,Alt,Ctrl
function look(){
if(event.shiftKey)
alert("禁止按Shift键!"); //可以换成ALT CTRL
}
document.οnkeydοwn=look;
29. 网页不会被缓存
或者
30.怎样让表单没有凹凸感?
或
31.不要滚动条?
让竖条没有:
让横条没有:
两个都去掉?更简单了
32.怎样去掉图片链接点击后,图片周围的虚线?
33.电子邮件处理提交表单