我正在开发 MVC 应用程序并使用剃刀语法。
在这个应用程序中,我提供评论功能。
我用
显示评论
段
<p id="ClassPara" class="ShowComments" onclick="chkToggle()">Show Comments</p>
现在,当用户单击“显示评论”时,我切换了Div
,在该 div 中显示评论。
现在,我想将段落的文本从“显示评论”更改为“隐藏评论”,当用户点击该段落时。
但我无法将文本更改为“隐藏评论”...它一直显示“显示评论”怎么做?
我的代码是....
<script src="../../Scripts/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$(".ShowComments").click(function () {
$(".ParentBlock").slideToggle("slow");
if ($('.ShowComments').text = "Show Comments"
{
$('.ShowComments').text('Hide');
}
else
{
$('.ShowComments').text('Show Comments');
}
});
});
</script>