<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("span").click(function(){
$(.comment).hide();
});
});
</script>
<a class=".comment">comment</a>'<br/><span class="comment">•<a style="padding-left:3.5px;" href ="">Comment</a></span><form align="left" id="bring" action="profile.php" method="post" enctype="multipart/form-data" name="blab_from">
<textarea name="blab_field" rows="3" style="width:100%; height:30px;"></textarea>
<input id="bringinput" name="submit" type="submit" value="submit" align="left" />
</form></td>
如何隐藏“&amp; bull comment”文本并使该表单与该jquery一起显示?
答案 0 :(得分:1)
删除class属性中的点(。),然后尝试。
<a class="comment">comment</a>
答案 1 :(得分:1)
尝试更改此内容:
<a class=".comment">comment</a>
到此:
<a class="comment">comment</a>
但保持你的jQuery javascript一样。
评论前面的点告诉jQuery要查找名为 comment 的类,而不是.comment。
答案 2 :(得分:0)
标签上的类定义错误(不要使用点)
使用此<a class="comment">comment</a>