gpt4 book ai didi

javascript - html 连接语法错误 : unexpected identifier

转载 作者:太空宇宙 更新时间:2023-11-03 19:39:04 26 4
gpt4 key购买 nike

我正在尝试将 html 连接到一个变量中。我能够成功地做到这一点,没有任何语法错误

htmlstr = "";
htmlstr += "<p>some paragraph";
htmlstr += "<p>another paragraph </p>";

$(list).html(htmlstr);

但是当我尝试这样做的时候

htmlstr = "";
htmlstr += "<button class="first"></button>";
htmlstr += "<button class="second"></button>";

$(list).html(htmlstr);

我收到错误消息“未捕获的语法错误:来自浏览器的意外标识符。我这样做的方式不对吗?

最佳答案

你的代码

 htmlstr += "<button class="first"></button>";
^ string ^ var ^ string ^

在你的代码中 firstvariable 所以你得到错误而不是 string

正确的方法

 htmlstr += '<button class="first"></button>';
^ ^ //changed to single quotes
htmlstr += '<button class="second"></button>';

关于javascript - html 连接语法错误 : unexpected identifier,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19032810/

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