PHP基础
PHP教程
php框架
JavaScript
asp.net
AJAX
正则表达式
ASP
输入
banner图
图片脚本
导航/分类
jsDate自定义函数延迟脚本执行_javascript技巧
代码如下:
function delay(numberMillis){
var now = new Date();
var exitTime = now.getTime()+numberMillis;
while(true){
now = new Date();
if(now.getTime() > exitTime)
return;
}
}
document.write("