gpt4 book ai didi

javascript - window.open lnk 没有被渲染

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

我在点击按钮时使用了以下 javascript 函数:

function searchItems() {

alert("Called");

window.open('' + <%#VMPath %>"/SearchItems.aspx?Value=" + $("#ctl00_txtSearch").val() + '', '_self');

}

但是这个函数显示了以下错误

enter image description here

我尝试了不同的单引号/双引号序列,但没有成功。

我只想拥有简单的:

window.open("url","_self");

请帮帮我。

最佳答案

好像是concatination的问题。您可以从头开始将“<%#VMPath %>”作为字符串的一部分:

window.open('<%#VMPath %>/SearchItems.aspx?Value=' + $("#ctl00_txtSearch").val(), '_self');

关于javascript - window.open lnk 没有被渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28627652/

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