我需要一些幫助,我似乎無法弄清楚如何預加載圖像我的下一個按鈕在我建立的圖像查看器。我從MySQL數據庫抓取圖像源,並在每次按下下一個按鈕時遍歷它們。我如何預先加載這些?這裏是我的下一個按鈕的代碼:從jquery預加載圖像從MySQL
$("#next").click(function(){
$(h).empty();
var p = <?php echo json_encode($results); ?>;
var start = $("#intabdiv img").attr("class");
var next = p[($.inArray(start, p) + 1) % p.length];
//Checking the ID of thumbnail pictures and determining the id here
var hinext = "../php/admin/portfolio/before/"+next;
$("#intabdiv img").attr('src',hinext);
$("#intabdiv img").attr('class',next);
//Centering image on screen
var h = $("#intabdiv img").width() + 70;
//ww is defined beforehand and is the windows width.
var total = ww - (h/2);
$(".popupbox").css("margin-left", total);
});
「var p」的內部是什麼樣的?現在很難猜測。 – 2012-03-14 16:10:00
這是一個簡單的數組,看起來像這樣(image1.jpg,image2.jpg,image3.jpg)。謝謝 – liveandream 2012-03-14 17:41:54