js定时函数
setTimeOut()
for example:
window.setTimeout(function () {
if (($("#pagecur").val() != '') && ($("#pagecount").val() != ''))
{
if (($("#pagecur").val() == undefined) ||
($("#pagecount").val() == undefined))
{
window.location.reload();
}
else
gopage($("#pagecur").val(), $("#pagecount").val());
}
else
{
window.location.reload();
}
}, 1000);
function hello(){
alert("hello");
}
//重复执行某个方法
var t1 = window.setInterval(hello,1000);
var t2 = window.setInterval("hello()",3000);
//去掉定时器的方法
window.clearInterval(t1);
js获取时间
var time = new Date().getTime();
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。