Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我增加 jQuery 选项卡的大小,单击选项卡中不存在文本的部分不会加载预期的选项卡。单击标题可以工作。但是单击空白部分不起作用。 点击这里
我以这种方式增加了宽度。
.ui-tabs .ui-tabs-nav li { width:180px; }
有谁知道修复?
将此添加到您的样式中:
.ui-tabs .ui-tabs-nav li a{ display:block; width:100%; }
这样,锚将占据整个宽度并且可以点击。