這是正確的jQuery語法,用於檢查div是否隱藏& &有一類「view」?如果確實如此,那麼在.3秒之後,揭示下一個隱藏的div與「視圖」級別?if jquery中的語句
注意它目前沒有工作,但它會淡入所有隱藏的divs,而不管任何類。
<script type="text/javascript">
$(function() {
// Start showing the divs
showDiv();
});
function showDiv() {
// If there are hidden divs left
if($('div:hidden').length.hasClass('view')) {
// Fade the first of them in
$('div:hidden:first').fadeIn();
// And wait one second before fading in the next one
setTimeout(showDiv, 300);
}
}
</script>
什麼是.length.hasClass()? – 2012-07-09 21:09:24
你的問題有更多的與jQuery選擇器相比,如果語句在* Javascript * – Radu 2012-07-09 21:11:16
隱藏的div不是空的,有一類'視圖'?我能結合那樣的條件嗎?還是應該用&&來代替? – kikix2125 2012-07-09 21:11:44