gpt4 book ai didi

javascript - 语法错误: missing ) after argument list

转载 作者:行者123 更新时间:2023-12-03 21:34:53 27 4
gpt4 key购买 nike

我收到语法错误:

SyntaxError: missing ) after argument list

来自此 jQuery 代码:

$('#contentData').append(
"<div class='media'><div class='media-body'><h4 class='media-heading'>" +
v.Name + "</h4><p>" + v.Description + "</p><a class='btn' href='" +
type + "' onclick="(canLaunch('" + v.LibraryItemId + " '))">
View &raquo;
</a></div></div>")

什么类型的错误会导致此 Javascript 语法错误?

最佳答案

您在 onclick 处理程序中有一个未转义的 ",请使用 \" 进行转义

$('#contentData').append("<div class='media'><div class='media-body'><h4 class='media-heading'>" + v.Name + "</h4><p>" + v.Description + "</p><a class='btn' href='" + type + "'  onclick=\"(canLaunch('" + v.LibraryItemId + " '))\">View &raquo;</a></div></div>")

关于javascript - 语法错误: missing ) after argument list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18931344/

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