代码
<asp:Button ID="btnPopupWindow" runat="server"
Text="Popup Window"
OnClientClick="PopupWindow();" />
的JavaScript
function PopupWindow() {
testwindow = window.open("http://google.com", "Google", "menubar=0,addressbar=0, width=500, height=500");
testwindow.focus();
}
使用上面的代码我可以在IE中打开新的弹出窗口,但是这个代码在firefox中不起作用 我的代码有什么问题?