我正在使用jQuery GalleryView插件在网页中显示图片。图像是从xml中提供的url链接加载的,因为没有图像是随机的,我使用jQuery读取所有链接,然后验证然后要求GalleryView显示,但是看起来GalleryView没有响应动态创建但是如果我硬核HTML页面中的图像URL链接,然后它工作...我试图在Ajax的完成功能中调用插件 非常感谢...
galleryView插件网址:http://www.techrepublic.com/blog/webmaster/plug-in-galleryview-with-jquery-on-your-website/2079
//由jQuery ---- //
生成的html代码<div id="selectedPropertyImg_Wrapper">
<div>
<ul id="myGallery">
<li><img src="http://www.estatesit.com/data/demoagent/photos/demo1-000069-p-w-13.jpg/"></li>
<li><img src="http://www.estatesit.com/data/demoagent/photos/demo1-000036-p-w-2.jpg/"></li>
<li><img src="http://www.estatesit.com/data/demoagent/photos/demo1-000036-p-w-3.jpg/"></li>
</ul>
</div>
</div>
// -------- jQuery -----
$(this).find('photo').each(function (index) {
PropertyDetail.d_img_urlname[index] = $(this).find('urlname');
$("<img>", {
src: PropertyDetail.d_img_urlname[index].text(),
error: function () {
PropertyDetail.d_img_urlname.splice($.inArray(PropertyDetail.d_img_urlname[index]), 1);
},
load: function (){
$("#selectedPropertyImg_Wrapper").find("#myGallery").append("<li><img src=" + PropertyDetail.d_img_urlname[index].text() + "/></li>");
}
});
});
// GalleryView图像//
ajax code....
}).done(function () {
$(function () {
$('#myGallery').galleryView({
panel_width: 750,
panel_height: 500,
frame_width: 100,
frame_height: 67
});
})
});
答案 0 :(得分:0)
$.fn.initImages = function()
{
$.ajax({
type: "GET",
url: "XMLFile.xml",
dataType: xml,
async:false,
success: function (xml) {
//read images from url
// validate images//
// store valid urls in obj= a1//
$(this).find('photo').each(function (index) {
$("#selectedPropertyImg_Wrapper").find("#myGallery").append("<li><img src= " + a1[index].text() + " /></li>");
});
}
});
}
现在你的html在galleryView插件函数之前调用这个函数
$(document).ready(function(){
$(this).initImages();
//call gallery now//
$(function () {
$('#myGallery').galleryView({
panel_width: 750,
panel_height: 500,
frame_width: 100,
frame_height: 67
});
})
});