您好我为我的网站编写了自己的评论字段,所以我尝试在jquery中使用append函数,但netbeans告诉我这个函数调用缺少引号
$( "#comment" ).append( "<div class="userComment">
<b>testName</b>
<p>TestText</p>
</div>" );
答案 0 :(得分:1)
这应该可以正常工作
$( "#comment" ).append( '<div class="userComment"><b>testName</b><p>TestText</p></div>' );