正如我看到你的评论I could get the alert message but not he pop window.
你的代码没有说明你是如何编码来打开一个javascript弹出窗口的。
从文档:
window.open(strUrl, strWindowName[, strWindowFeatures]);
在哪里
字符串:
要在新打开的窗口中加载的 URL。strUrl 可以是 Web 上的 HTML 文档、图像文件或浏览器支持的任何资源。
strWindowName
新窗口的字符串名称。名称可以用作链接和表单的目标,使用 or 元素的 target 属性。名称不应包含任何空格。请注意,strWindowName 没有指定新窗口的标题。
strWindowFeatures
可选参数列出新窗口的特征(大小、位置、滚动条等)。字符串不能包含任何空格,每个特征名称和值必须用逗号分隔。
在这里阅读更多
下面的代码触发了自定义事件enterKey
,您可以将其链接起来以获得更好的性能。
$('input').bind("enterKey", function (e) {
var windowOpts = "menubar=no,location=no, height=600, width=700, resizable=no,scrollbars=no,status=yes";
window.open('https:encrypted.google.com', 'self', windowOpts);
}).keyup(function (e) {
if (e.keyCode == 13) {
$(this).trigger("enterKey");
}
});