我可以把它变成一个外部脚本吗?
<center>
Users online:
<blink>
<sup>
<form>
<TABLE style="background-color:white" border="2">
<TD><div id="text"></div></TD>
</TABLE>
</form>
</sup>
</blink>
</center>
<script type="text/javascript">
Function.prototype.allowSleep = function(n) {
var i, f;
if (!/^[$\w]+$/.test(n)) return;
i = 0;
f = this.toString().replace(/sleep\((.*?)\);/g , function(f,t) {i++; return n+".f"+i+" = function() {"+n+".func"+i+"();};\nsleep("+t+","+n+".f"+i+");\n"+(i==1?"":"}\n")+n+".func" + i +" = function() {";});
eval(n+'='+f+'\n}');
}
sleep = function(t,f) {
if (f === undefined) return;
setTimeout(f,t);
}
afunc = function() {
document.getElementById('text').innerHTML = '1';
sleep(2000);
document.getElementById('text').innerHTML = '2';
sleep(2030);
document.getElementById('text').innerHTML = '3';
}
afunc.allowSleep('afunc'); // comment
afunc();
</script>
我另存为 .js 但在第 2 行出现错误...
什么是 .js 以及如何制作它们?xD
我只想能够基本上隐藏我的代码
我必须单击一个按钮才能显示它还是会出现在页面上?