Honeywell的PKS中编写延时程序? 用hmiweb display building编写触发延时的脚本程序,试了半天都不行,求 高人讲解下 下边是找的英文资料 you can use the settimeout method to evaluate an expression after a specified time period has elapsed. the following example will hide a button after 3 seconds have elapsed: 307 timers function fnhide(otohide) { window.settimeout(“fnhide2(“ + otohide.id +”)”, 3000); } function fnhide2(sid){ var o = eval(sid); o.style.display=”none”; } the settimeout method is cancelled using the cleartimeout method.查看更多