摘要: setTimeout只在指定时间后执行一次,代码如下: <script> //定时器 异步运行 function hello(){ alert("hello"); } //使用方法名字执行方法 var t1 = window.setTimeout(hello,1000); var t2 = wind 阅读全文
posted @ 2018-04-02 13:15 大熊丨rapper 阅读(12914) 评论(0) 推荐(0) 编辑