刚找到的js暂停函数,共享出来给大家。
主要是利用模式对话框会将下层窗口的程序暂停的功能。看代码就知道了。缺点就是暂停的时候你不能操作页面上的任何东西,还有,如果将它加在循环体里面,因为本身模式对话框的显示和关闭是需要时间的,所以,再加上暂停的时间,会变的很慢,影响效率。
function pause(numberMillis) { var dialogScript = 'window.setTimeout(' + ' function () { window.close(); }, ' + numberMillis + ');'; var result = // For IE5. window.showModalDialog( 'javascript:document.writeln(' + '"<script>' + dialogScript + '<' + '/script>")'); /* For NN6, but it requires a trusted script. |