我正在使用jQuery-Steps库。
http://www.jquery-steps.com/
我想更改外观设置"headerTag“,该设置显示窗体顶部的选项卡。
默认情况下,"headerTag“是"H1”
这是https://github.com/rstaib/jquery-steps/wiki/Settings文档
我使用的js代码
$("#wizard-1").steps({
headerTag: "h1",
bodyTag: "fieldset",
transitionEffect: "slideLeft",
autoFocus: true
});HTML
<h1 class="noDisplay">Profile</h1>
<fieldset>my code</fieldset>我要删除由headerTag显示的选项卡。有没有其他选择呢?
发布于 2014-06-02 12:14:54
试试这个:
jQuery
$('ul[role="tablist"]').hide();或CSS
ul[role="tablist"] {
display: none;
}https://stackoverflow.com/questions/23994173
复制相似问题