如何让在脚本里面让一个动作延迟几秒执行? ( 积分: 50 )

  • 主题发起人 主题发起人 szw3000
  • 开始时间 开始时间
S

szw3000

Unregistered / Unconfirmed
GUEST, unregistred user!
问题已经解决,谢谢
 
问题已经解决,谢谢
 
关于网页设计方面的HTML语法,DHTML问题欢迎到
http://njsoft.w2.smsky.cn/BBS
(http://est.51vip.com)
提问。
 
你可以加一個時鐘的控件(timer)來控件的,你自己注意看一下這個控件,你就應該知道怎麼做了,很簡單的
 
晕。。。。。我只是要在脚本里面做文章,不需要什么其他控件的。。。
 
用线程的sleep()
或者wait
 
<script Language=&quot;JavaScript&quot;>
var timerID = null;
var timerRunning = false;
function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function showtime () {
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds()
var timeValue = &quot;&quot;
+ ((hours >12) ? hours -12 :hours)
timeValue += ((minutes < 10) ? &quot;:0&quot;
: &quot;:&quot;) + minutes
timeValue += ((seconds < 10) ? &quot;:0&quot;
: &quot;:&quot;) + seconds
timeValue += (hours >= 12) ? &quot;
P.M.&quot;
: &quot;
A.M.&quot;
window.status = timeValue;
timerID = setTimeout(&quot;showtime()&quot;,1000);
timerRunning = true;
}
function startclock () {
stopclock();
showtime();
}
</script>
这样????
 
接受答案了.
 
后退
顶部