如何通过引用 CSS 类或 id 来隐藏文本?
<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>
我怎样才能隐藏“&bull comment”文本并使表单与该 jquery 一起出现?
<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>
how can I hide the "&bull comment" text and make the form appear with that jquery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
删除类属性中的点(.),然后尝试。
Remove dot(.) in class attribute and then try.
尝试将其更改
为:
但保持 jQuery javascript 相同。
comment 前面的点告诉 jQuery 查找名为 comment 的类,而不是 .comment。
Try changing this:
to this:
but keep your jQuery javascript the same.
The dot in front of comment tells jQuery to look for a class named comment, not .comment.
您在标签处的类定义错误(不要使用点)
使用此
comment
you have wrong class definition at tag (don't use a dot)
use this
<a class="comment">comment</a>