如何使选项卡在加载时处于活动状态
我正在使用 jquery 在我的网站上创建一个基于选项卡的特色内容区域 - http://www.gregmalkin。 co.uk - 但我无法让第一个选项卡在加载时处于“活动”状态,然后在自动更改时将活动状态更改为选定的选项卡。
当我单击某个选项卡时,它会变为活动状态,但我希望它们自动设置为活动状态。
提前致谢!
I'm using jquery to create a tab-based featured content area on my website - http://www.gregmalkin.co.uk - but am having trouble getting the first tab to be 'active' on load, and then the active state to change to the selected tab when it auto changes.
When I click on a tab it becomes active, but I want them to be set as active automatically.
thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为这个选项卡插件是预先制作的?尝试将“active”添加到源中第一个选项卡的类中。
I assume this tab plugin is pre-made? Try just adding "active" to the class of the first tab from its source.
也许强制单击 pageLoad 或 $(document).ready() ?
如果您需要了解两者之间的差异,请阅读
这里
我只是检查该选项卡插件,并将您想首先看到的选项卡设置为活动状态应该可以工作。
Maybe forcing the click on the pageLoad or in $(document).ready()??
If you need the diferences between each one, read
here
I just checked that tab plugin, and set active on the one you want to see first should work.
在每个页面上保留一个隐藏字段,其中包含您想要在页面加载时激活的选项卡 ID。
并将隐藏字段值与 dom 就绪函数上的选项卡 ID 进行比较,如果它与任何选项卡匹配,则将
class="active"
附加到选项卡,如下所示Keep a hidden field on everypage with the tab id you wants to make the active on pageload.
And compare the hiddenfield values with tab ids on dom ready function, if it matches with any tab, attach
class="active"
to the tab as shown below