用javascript打开两个弹出窗口。不在IE中工作

时间:2013-06-26 00:27:47

标签: javascript internet-explorer popup

我需要用一个按钮打开两个弹出窗口。我有这个代码

<script language="javascript">
function abrir2popup() {
a= window.open("http://example.com","", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=300, height=90, top=200, left=240");
b= window.open("http://example.com","", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=300, height=100, top=85, left=240");
setTimeout(function () { a.close();}, 10000);
setTimeout(function () { b.close();}, 10000);
}
</script>
<button value="send" onclick="abrir2popup();this.disabled=true;" />test</button> 

在Chome,FF和Safari工作正常。但在IE和Opera中不起作用。它可以解决?歌剧并不重要。 IE让我担心

0 个答案:

没有答案