我已经通过插入以下代码行实现了showmore插件:
<script src="script/showmore.js" type="text/javascript"></script>
并将'more'类添加到:
<span class='each_comment comment more'>
插件showmore很容易 - 你只需要将showmore类添加到所需的元素即可。所以它与点击事件无关! 现在,当用户发布新评论时,它会出现在AJAX成功通话中:
$('.submit').after('<div class="combine_comment"><div class="user_area_comment"><img class="small_image_user" src="'+url_img+'"/><a href="home.php?u='+username+'"class="username_span">'+username+'</a></div><span class="each_comment comment more">'+comment+'</span> <time class="timeago" datetime="'+data+'">'+data+'</time></div></div>');
正如您所看到的,我还在添加评论的范围内添加了“更多”课程。但showmore插件不能仅添加评论。虽然正确设置了类,但我需要重新加载页面才能看到它正常工作。你知道什么可能是错的,为什么showmore插件不会“看到”更多的附加元素类?也许,它与加载DOM有关? 在此先感谢您的关注和帮助。