我正在使用带有标签的Cycle2幻灯片放映,以允许共享特定图像,但是我不希望访问者必须反复按返回按钮才能转到上一页。有什么方法可以使后退按钮忽略主题标签?

如果有帮助,这里是Cycle2的主题标签插件(当然要记入Cycle2):

function (e) {
    "use strict";
    function t(t, i) {
        var n;
        return t._hashFence ? (t._hashFence = !1, void 0) : (n = window.location.hash.substring(1), t.slides.each(function (s) {
            if (e(this).data("cycle-hash") == n) {
                if (i === !0)t.startingSlide = s; else {
                    var o = s > t.currSlide;
                    t.nextSlide = s, t.API.prepareTx(!0, o)
                }
                return!1
            }
        }), void 0)
    }

    e(document).on("cycle-pre-initialize", function (i, n) {
        t(n, !0), n._onHashChange = function () {
            t(n, !1)
        }, e(window).on("hashchange", n._onHashChange)
    }), e(document).on("cycle-update-view", function (e, t, i) {
        i.hash && "#" + i.hash != window.location.hash && (t._hashFence = !0, window.location.hash = i.hash)
    }), e(document).on("cycle-destroyed", function (t, i) {
        i._onHashChange && e(window).off("hashchange", i._onHashChange)
    })
}
(jQuery),
/*! loader plugin for Cycle2;  version: 20131121 */


非常感谢您的帮助,谢谢:)

最佳答案

代替

window.location.hash = i.hash;




window.location.replace(i.hash);


这将替换当前的历史记录条目,而不是创建/添加一个新的历史记录条目。这样,以前的历史记录条目将在整个幻灯片显示中保持不变。

10-08 09:43