setinterval在chrome中工作但在firefox中没有

时间:2015-09-18 12:16:30

标签: javascript jquery google-chrome firefox

我正在使用设置间隔功能。以下是我的代码

popupWindow = window.open ('test.php','_blank','width='+w+',height='+h+',toolbar=no,menubar=no,resizable =no,directories = no');
            x = popupWindow.outerWidth ;
            y = popupWindow.outerHeight ;
            var timer = setInterval(function() {  
    if(popupWindow.closed) {  
       clearInterval(timer);  
        alert('closed');  
    }  
}, 1000);

这是工作chrome和IE但不是firefox。请帮忙

0 个答案:

没有答案