我目前正試圖在頁面加載後2秒顯示div。我可以通過在頁面加載後兩秒隱藏div來成功完成相反的操作。問題是什麼都沒有發生,div保持隱藏狀態。如何在頁面加載兩秒後正確顯示div?附加:平均同時兩秒運行顯示一個Ajax加載GIF,然後消失在div頁面加載2秒後顯示div
<script type = "text/javascript">
$(window).load(function() {
setTimeout(function() {
$("#contentPost").show('fadeIn', {}, 500)
}, 2000);
});
</script>
HTML/CSS
<style>
.contentPost { display:none;}
</style>
<div class="contentPost">
<h2>Hi there</h2>
</div>
顯示您的HTML-你是如何隱藏起來的? –
@SteveH。我已添加html – CodingWonders90