如何通过引用 CSS 类或 id 来隐藏文本?

发布于 2024-11-09 01:11:38 字数 865 浏览 0 评论 0原文

        <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">&bull;<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

雨落□心尘 2024-11-16 01:11:38

删除类属性中的点(.),然后尝试。

<a class="comment">comment</a>

Remove dot(.) in class attribute and then try.

<a class="comment">comment</a>
恋你朝朝暮暮 2024-11-16 01:11:38

尝试将其更改

<a class=".comment">comment</a>

为:

<a class="comment">comment</a>

但保持 jQuery javascript 相同。

comment 前面的点告诉 jQuery 查找名为 comment 的类,而不是 .comment。

Try changing this:

<a class=".comment">comment</a>

to this:

<a class="comment">comment</a>

but keep your jQuery javascript the same.

The dot in front of comment tells jQuery to look for a class named comment, not .comment.

行至春深 2024-11-16 01:11:38

您在标签处的类定义错误(不要使用点)

使用此 comment

you have wrong class definition at tag (don't use a dot)

use this <a class="comment">comment</a>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文