我的 jquery UI 标签目前仅在 Firefox 3.6.24 中存在问题,其中第一个标签不会被加载。这让我发疯,因为 xhr 说它有 html 数据。
jQuery v1.4.4 jQuery v1.8.18
想知道是否有一些已知问题和任何修复
$(function() {
$("#tabs").tabs({
'cookie': {
'expires': 1
},
'ajaxOptions': {
'error': function( xhr, status, index, anchor ) {
$( anchor.hash ).html(
"Couldn't load this tab. We'll try to fix this as soon as possible.");
}
},
'spinner':"Loading..."
});
});
=====HTML=====
<div id="tabs">
<ul class="nav nav-tabs">
<li><a href="/url/1">First tab</a></li>
<li><a href="/url/2">Second tab</a></li>
<li><a href="/url/3">Third tab</a></li>
<li><a href="/url/4">Fourth tab</a></li>
</ul>
</div>
=====更新=======
问题出在 HTML 中,表单元素在表格内打开,而表单关闭标记位于关闭表格标记之外。经验教训总是验证您的 HTML。