单击下一步按钮后,jcarousel 不会在图像上触发事件。事件被绑定用于图像的初始加载。
我添加了用于在轮播中显示图像预览的代码。
有人可以帮忙吗?
谢谢
function imagePreview() {
xOffset = 50;
yOffset = 60;
$("img.preview").hover(function (e) {
this.t = this.title;
this.title = "";
var c = (this.t != "") ? "<br/>" + this.t : "";
PageMethods.GetItemLargeImage(this.id, largeImageSucceed, largeimageFail);
$("img.preview").mouseout(function () {
document.getElementById("displayPreviewImage").src = "";
})
},
function () {
this.title = this.t;
$("#preview").remove();
});
$("img.preview").mousemove(function (e) {
$("#preview")
.css("top", 100 + "px")
.css("left", 400 + "px");
});
function largeImageSucceed(result) {
document.getElementById("displayPreviewImage").src = result;
}
function largeimageFail() {
//alert('hi');
}
}