1

Gallerifficプラグインを使用しています。Chromeと Firefox では正常に動作しますが、IE では動作せず、SCRIPT5009: 'e' is undefined. JQuery dode:

// Initialize history plugin.
// The callback is called at once by present location.hash. 
$.historyInit(pageload, "advanced.html");

// set onlick event for buttons using the jQuery 1.3 live method
$("a[rel='history']").live('click', function () {
    if (e.button != 0) return true;

    var hash = this.href;
    hash = hash.replace(/^.*#/, '');

    // moves to a new page. 
    // pageload is called at once. 
    // hash don't contain "#", "?"
    $.historyLoad(hash);

    return false;
});
4

1 に答える 1

4

イベント パラメータが欠落しているようです。e関数呼び出しに an を追加します。

$("a[rel='history']").live('click', function (e) {
if (e.button != 0) return true;
于 2013-01-13T20:45:18.977 に答える