怎么才可以去掉IE安全警告框呢(就上面黄色的那个)?
在js里需要加什么脚本吗?
我在网上查了下
"<!– saved from url=(0013)about:internet –>
这段既可去掉这个安全警告。代码加在任何位置都行。
此方法针对XP SP2有效。"
我把这段代码加进去了,可是IE不听话,继续弹,要是这么弹下去,网站的客户也不弹走了吗.
求助下编程论坛的朋友,谢谢了!!
下面的简单小程序,是我做的练习,在这个基础上,需要加什么代码呀?
<html>
<head>
<meta http-equiv = "Content-Type" content = "text/html; charset=gb2312" />
<title>简单测试程序</title>
</head>
<body>
<script language = "javascript">
document.write("<strong><font color=blue>简单测试程序</font></strong>" + "<hr />");
function TestRunTime() {
this._strings = new Array();
}
TestRunTime.prototype.append = function(str) {
this._strings.push(str);
};
var count = 0, sum = 0;
for(var i = 0; i < 10; i++) {
var time = 0;
var test = new TestRunTime();
d1 = new Date();
for(var j = 0; j < 50000; j++) {
test.append("hello");
}
d2 = new Date();
time = d2.getTime() - d1.getTime();
count++;
sum += time;
document.write("第" + count + "次测试时间: "+ time + " 毫秒" + "<br />");
}
document.write("<hr />" + "平均时间:" + sum/count + " 毫秒");
</script>
</body>
</html>
[此贴子已经被作者于2007-11-2 1:18:46编辑过]