Closed. This question is not reproducible or was caused by typos。它当前不接受答案。
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
5年前关闭。
编码已经漫长的一天,没有人能看到导致此错误的原因吗?在
想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
5年前关闭。
function newReply(username, userImage, text)
{
return "<div class='reply'>
<div class='user-picture-reply'><img class='img-circle' height='30' src='" + userImage + "'></div> \
<div class='reply-arrow-left'></div> \
<div class='reply-content'>"+ text + "</div> \
<div class='reply-username'>Posted by " + username + " just now</div> \
</div>";
}
编码已经漫长的一天,没有人能看到导致此错误的原因吗?在
74
行中说,这是return
行 最佳答案
第一行在第一格之后需要\
。
让我知道是否可行,如果不是同样的错误?
这是我看到的唯一语法错误,除了代码看起来还不错。
如果这仍然引发错误,则可能提供上下文?
编辑:看起来有人已经在评论中回答了,祝你好运!
关于javascript - Uncaught SyntaxError:意外 token 非法有人可以看到我出了错吗? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26416054/
10-13 00:36