Bootstrap

js使用睡眠功能

 在打开的子窗口刷新父窗口的代码里如何写?
window.opener.location.reload()

 

 

在javascript中使用睡眠功能
// 使用暂停时间函数


function pause(millisecondi)
{
    var now = new Date();
    var exitTime = now.getTime() + millisecondi;

    while(true)
    {
        now = new Date();
        if(now.getTime() > exitTime) return;
    }
}


 

;