1

单击下一步按钮后,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');
        }


    }
4

1 回答 1

0

我得到了解决方案。以前我通过创建 PageRequestManager 实例并在页面结束请求后触发它来调用它。它以这种方式工作,但问题是事件没有绑定到所有 UL 元素。

现在我在图像的 onmouseover 事件上调用此方法。所以它现在工作正常。

于 2010-08-03T10:17:02.320 回答