我有一个bootstrap 3网站,我找到了一个用于创建论坛的示例代码。我发现另一个代码来源是评论部分。我尝试使用append从评论框中取出文本并将其添加到第一条评论下方,但是当我点击评论按钮时文本没有显示。我做了一个console.log,当我点击注释按钮时,console.log显示出来,所以我的问题出现在附加的某个地方我不知道在哪里。
我希望页面转到评论,显然会打开折叠,并显示文字。
我创造了一个小提琴并且是我的代码
https://jsfiddle.net/mattmega4/chv94zwa/2/embedded/result/
string dataToWrite="HELLOWORLD";
byte[] writeData = ASCIIEncoding.ASCII.GetBytes(dataToWrite);
答案 0 :(得分:1)
尝试这样的事情:
$('#commentButton').on('click', function() {
if($('#forumCommentSearchBox').val() ) {
$('.commentList').append('<li><div class="commenterImage"> \
<img src="http://lorempixel.com/50/50/people/9"> \
</div> \
<div class="commentText"> \
<p class="">'+$('#forumCommentSearchBox').val()+'</p> \
<span class="date sub-text">on March 5th, 2014</span> \
</div></li>');
console.log("bob the builder");
}
else{
alert("idiot");
}
});