SetTimeOut 或 SetInterval 快速触发事件
这是我的代码
设置间隔(函数() {
$("#<%=cmbResCityStatEdit.ClientID%>; 选项[文本='"+ $( '#<%=lblCity.ClientID%>' )。文本() +"']").attr("已选择",true); $("#<%=cmbResCityStatEdit.ClientID%>; 选项:已选择").text())
},1);
Here is my code
setInterval(function()
{
$("#<%=cmbResCityStatEdit.ClientID%>
option[text='"+ $(
'#<%=lblCity.ClientID%>' ).text()
+"']").attr("selected",true); $("#<%=cmbResCityStatEdit.ClientID%>
option:selected").text())
},1);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
时间以微秒为单位,因此您定义的间隔为 1/1000 秒......
网络过载对此没有影响,因为您只是在延迟后在客户端中执行代码。
PS:下次请问一个更明确的问题,我什至不确定我的回答是否有用。
time is in microsecond, so you are defining an interval of 1/1000th of second...
and network overloading has no impact in this, since you are simply executing the code in your client after a delay.
P.s.: next time, please, ask a more clear question, I'm not even sure if my answer has been useful.
setTimeout 和 setInterval 的速度完全相同,但它们是不同的语句。 setTimeout 将在超时后运行您的函数,setInterval 将在每次运行之间经过设定的时间后连续运行它。
setTimeout and setInterval are exactly the same speed, they are different statements though. setTimeout will run your function after the timeout, setInterval will run it continuously after a set amount of time between each run.