我尝试了各种方法来打开在.js文件中导入的.ftl文件中的新窗口中的链接,但都不成功。
下面是.js中的代码
$(".termsAndCondition").on("click", function() {
var web_url = localStorage.getItem("webUrl");
setTimeout(() => {
window.location.href = `${web_url}TermsAndConditions`.prop(
"target",
"_blank"
);
}, 1000);
});
${web_url}termsandconditions
解析为具有适当对象的字符串是什么?只需使用带有target=“_blank”
的链接
<a href="termsandconditions.html" target="_blank">Terms and conditions</a>
这不是有效的JS
window.location.href = `${web_url}TermsAndConditions`.prop(
"target",
"_blank"
);