0
我想顯示一個html文件。然後淡入另一個。這是我的代碼,它除了第一次,它等待10秒切換。然後在交換機之後,它在交換機之間等待5秒鐘。我有點困惑,如何jQuery的處理超時和等待。我想每個開關等待5秒鐘,從第一個開始。使用jquery加載一個html文件,延遲,然後另一個,循環
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("#responsecontainer3").load("ad1.html");
var refreshId = setInterval(function() {
$("#responsecontainer3").fadeTo("slow").load('ad1.html?randval='+ Math.random());
setTimeout(function()
{
$("#responsecontainer3").fadeTo("slow").load('ad2.html?randval='+ Math.random());
}, 5000);
}, 10000);
});
</script>
<div id="responsecontainer3">
</div>
什麼ad2.html ... –
@JoshBond檢查更新答案」 – thecodeparadox
@codeparadox:謝謝,它加載ad1.html但從來沒有加載ad2.html。我將代碼放在$(document).ready(function()中。 –