我想最后在一个使用 的函数中放置一个文本setInterval,但我不能这样做,代码如下-
function checkInIntervals(howManyTimes, howOften)
{
var T = window.open("", "MsgWindow","width=400,height=600");
var counter = 0;
var interval = setInterval(function()
{
T.document.title = 'MIKE!'; counter++;
if (counter === howManyTimes)
{
clearInterval(interval);
}
// do something
T.document.write('Where are you?');
T.document.write("<br/>");
console.log(counter, 'iteration');
}, howOften)
T.document.write('This text needs to be placed last.');//problem
T.document.write("<br/>");
T.document.close(); // problem
}
checkInIntervals(3, 1000);
在这里,T.document.write('This text needs to be placed last.');首先出现,然后由于 消失T.document.close();,但我需要“此文本需要放在最后”。最后,我还需要在T.document.close();每次运行该函数时都需要新窗口而没有以前的文本。
我怎样才能做到这一点?
holdtom
守候你守候我
相关分类