我一直在使用改變了我的網站上的照片庫下面的圖片一起:加載文本使用AJAX
/*Begin Photo Gallery Code*/
var images = ['g1.jpg', 'g2.jpg', 'g3.jpg', 'g4.jpg'];
function loadImage(src) {
$('#pic').fadeOut('slow', function() {
$(this).html('<img src="' + src + '" />').fadeIn('slow');
});
}
function goNext() {
var next = $('#gallery>img.current').next();
if(next.length == 0)
next = $('#gallery>img:first');
$('#gallery>img').removeClass('current');
next.addClass('current');
loadImage(next.attr('src'));
}
$(function() {
for(var i = 0; i < images.length; i++) {
$('#gallery').append('<img src="images/gallery/' + images[i] + '" />');
}
$('#gallery>img').click(function() {
$('#gallery>img').removeClass('current');
loadImage($(this).attr('src'));
$(this).addClass('current');
});
loadImage('images/gallery/' + images[0]);
$('#gallery>img:first').addClass('current');
setInterval(goNext, 4000);
});
它加載在一組的四個畫面時一張圖片。另外我有四個html文件,每個文件都與其中一張圖片相關。我想使用JavaScript/JQuery/AJAX加載相關的html文件的內容以及顯示的圖片。有沒有人有一個想法,我可以做到這一點?
我應該把ajax文件(4個html文件)放入JavaScript數組或其他東西嗎?
var ajaxPages=['ajax1.html','ajax2.html','ajax3.html','ajax4.html'];
在此先感謝。
你能告訴我們html嗎?你想在哪裏添加ajax加載的內容? – chockleyc
當然是的:查看出來:http://codepad.org/o4Uh7bK1 – JasonStack
我想將Ajax內容注入$('#story#text') – JasonStack