我需要用一个按钮打开两个弹出窗口。我有这个代码
<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让我担心