gpt4 book ai didi

带有 a-tag 的 javascript 变量(字符串构建)

转载 作者:行者123 更新时间:2023-11-29 21:06:24 26 4
gpt4 key购买 nike

我在以编程方式插入到编辑器中的标记时遇到了问题。我不知道如何添加 target="_blank"属性。即使我尝试了 '""' 或 "' "' 以及各种组合,我也无法让它工作。我也不知道这个任务叫什么,所以我不能用谷歌搜索。任何帮助,使这项工作将不胜感激

var html = "<a href='" + host + "/draught/connect/Download" + draughtDownloadType + "?PropId=" + selectedPropertyId + autoUpdateQuery + "' target=_blank>" + linkText + "</a>";

最佳答案

您需要通过在其前面放置一个 \ 来转义 " 字符。

target=\"_blank\"

给你:

var html = "<a href='" + host + "/draught/connect/Download" + draughtDownloadType + "?PropId=" + selectedPropertyId + autoUpdateQuery + "' target=\"_blank\">" + linkText + "</a>";

关于带有 a-tag 的 javascript 变量(字符串构建),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43850160/

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