gpt4 book ai didi

javascript - 允许用户在 window.open() 中更改 URL

转载 作者:行者123 更新时间:2023-11-29 18:17:31 25 4
gpt4 key购买 nike

我有以下代码,当用户点击按钮时打开一个新窗口:

$('.loginButton').click(function () {
var strString = $("#medlineSearch").val()
var strSearch = "http://google.com&query=";
var url = strSearch + strString;
alert(strSearch+strString);
var windowName = $(this).attr('id');
window.open(url, windowName, "height=750,width=1250,scrollbars=1,resizable=1,location=1");
// custom handling here
return false;
});

我想要做的是允许用户在地址栏中输入其他内容,这似乎是只读的。

有什么办法可以改变吗?

最佳答案

如果您希望能够更改它,请将目标设置为 _blank

这将阻止新页面作为弹出窗口打开,而是作为新页面打开。

window.open
( 'http://google.com'
, '_blank'
);

jsfiddle .

关于javascript - 允许用户在 window.open() 中更改 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21788547/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com