如果不包含名称的URL,则替换DIV的内容

时间:2016-01-09 07:58:27

标签: javascript jquery

例如,我有像这样的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";

很抱歉,如果这个问题有点令人困惑。但我真的希望代码安装在我的博客上。如果有人可以,请帮助。谢谢..

0 个答案:

没有答案