例如,我有像这样的HTML安排:
<div class="container">
<a href="http://name-domain.com">User Without</a>
<div id="comment">
This comment.. //This will be replaced automatically
</div>
<a href="https://www.blogger.com/profile/123456789">Name User</a>
<div id="comment">
This comment..
</div>
</div>
我只允许用户使用博客帐户和匿名进行评论。如果有用户使用我想要的URL进行评论,则评论内容将自动替换为javascript或jquery。
例如:
$("#comment").html("You may only use the commenting blogger account and Anonymous")
或
document.getElementById("comment").innerHTML="You may only use the commenting blogger account and Anonymous";
很抱歉,如果这个问题有点令人困惑。但我真的希望代码安装在我的博客上。如果有人可以,请帮助。谢谢..