Html:当我选择“选项卡”时如何隐藏标题

发布于 2024-09-13 03:14:10 字数 272 浏览 4 评论 0原文

大家好,

我的网页由 3 个选项卡组成。当我单击第三个选项卡时,标题必须处于隐藏状态。我如何实现这一点。

我的标题 div 如下

<div id= headingid>
<h1 class="heading">
 E-Z Search: List Search Topics & Criteria</h1>
</div>

Hi all,

My webpage consists of 3 tabs. When i click on the third tab, the heading must be in a hidden state. How do i achieve this.

My heading div is as follows

<div id= headingid>
<h1 class="heading">
 E-Z Search: List Search Topics & Criteria</h1>
</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

哥,最终变帅啦 2024-09-20 03:14:10

使用Jquery,你可以写一些像这样的东西

$('#headingid').click(function(){
$('.heading').hide();
});

Using Jquery, you can write sometihng like this

$('#headingid').click(function(){
$('.heading').hide();
});
╰つ倒转 2024-09-20 03:14:10

您可以像这样隐藏它:

$('.heading').hide();

您需要提供完整的 html 标记,包括选项卡的标记以获得更好的答案。

如果您的点击是在 ID 为 headingiddiv 上触发的,则您的代码应为:

$('#headingid').click(function(){
  $('.heading', $(this)).hide();
});

You can hide it like this:

$('.heading').hide();

You need to provide complete html markup including that of tabs for better answers.

If your click is triggered on the div with id headingid, your code should be:

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