Html:当我选择“选项卡”时如何隐藏标题
大家好,
我的网页由 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用Jquery,你可以写一些像这样的东西
Using Jquery, you can write sometihng like this
您可以像这样隐藏它:
您需要提供完整的 html 标记,包括选项卡的标记以获得更好的答案。
如果您的点击是在 ID 为
headingid
的div
上触发的,则您的代码应为:You can hide it like this:
You need to provide complete html markup including that of tabs for better answers.
If your click is triggered on the
div
with idheadingid
, your code should be: