这是检查 div 是否隐藏 && 具有“视图”类的正确 jQuery 语法吗?如果是这样,那么在 0.3 秒后显示下一个具有“视图”类的隐藏 div?
请注意,它目前不起作用,它会在所有隐藏的 div 中消失,无论类如何。
<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>