<html>function a() { alert("aa"); }function b(){ a(); }<body onloud="b()"></body></html>退出a()函数的执行!
4 回答
慕容3067478
TA贡献1773条经验 获得超3个赞
1.[self performSelector:@selector(函数名) withObject:nil afterDelay:5.0f]
条件:在uiviewController的主线程中
2.[NSTimerscheduledTimerWithTimeInterval:5.0f target:self selector:@selector(函数名) userInfo:nil repeats:NO];
在具体函数中,执行代码,执行完毕以后调用NSTimer invalidate方法来销毁timer
3.[NSThread sleepForTimeInterval:5.0f];
[要延迟执行的方法];
条件:主线程或者子线程都可
犯罪嫌疑人X
TA贡献2080条经验 获得超4个赞
<html>
function a()
{ alert("aa"); }
function b()
{ a(); }
<body onload="window.setTimeout(b,5000);"></body>
</html>
郎朗坤
TA贡献1921条经验 获得超9个赞
function a()
{ alert("aa"); }
function b()
{ setTimeout(a(),延迟时间); }
<body onloud="b()"></body>
- 4 回答
- 0 关注
- 1060 浏览
添加回答
举报
0/150
提交
取消