我正在使用jQuery UI選項卡。我應該如何防止加載內容的閃爍,同時還要確保JavaScript禁用時內容可見?如何防止jQuery onload閃爍不顯眼?
我已經嘗試添加一個.js類的身體當文檔被加載,但作爲標籤在爲要添加的類同時加載仍有內容的閃爍。
#container{display:none;}
<div id="container">
<div id="tabs">
<ul>
<li><a href="#tabs-1">Nunc tincidunt</a></li>
<li><a href="#tabs-2">Proin dolor</a></li>
</ul>
<div id="tabs-1">
<p>Tab 1</p>
</div>
<div id="tabs-2">
<p>Tab 2</p>
</div>
</div>
</div>
<script>
$(document).ready(function(){
$('#tabs').tabs();
$('#container').show();
});
</script>
內部頭或HTML和頭之間? –
只要它在容器div之前就沒關係了。但我會把它放在html標籤(在html和head之間)之後 –
謝謝大家的回答。這很好用,如果需要的話也可以在html標籤中使用其他類。 –