web-dev-qa-db-ja.com

file://プロトコルを使用しているときに、history.back()関数をChromeで機能させることはできますか?

ローカルファイルシステムとブラウザの使用に制限されている環境でアプリケーションを構築しています(つまり、サーバーを実行することはできません)。主にhistory.back()を呼び出すだけの一般的な「戻る」リンクが多数のページにあります。次のようになります。

_function goBack(evt) {
    // Check to see if override is needed here

    // If no override needed, call history.back()
    history.back();
}

$('#my-back-button').click(goBack);
_

このコードはFirefoxとIE6では正常に機能しますが(質問しないでください)、Chromeでは失敗します。理由および/または考えられる回避策に関する提案はありますか?

history.go(-1);も試しましたがどちらも機能しません。

15

Chromeで何らかの理由で、history.go(-1)を呼び出した後にreturnfalseを追加する必要があります

関数を次のように変更します。

function goBack(evt) {
// Check to see if override is needed here

// If no override needed, call history.back()
history.go(-1);
return false;
}
23
Chibueze Opata
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
    function goBack(evt) {
    // Check to see if override is needed here

    // If no override needed, call history.back()
    history.back();
    $('#my-back-button').forwardEvent('click');
}

$('#my-back-button').click(goBack);

/**
* chrome workaround for triggering click events
* @param {event} event  event
* @return {undefined}   Returns undefined
*/
    $.fn.forwardEvent = function(event) {
        this.each(function() {
            if (this.dispatchEvent) {
                if (event.originalEvent) {
                    event = event.originalEvent
                }
                try {
                    this.dispatchEvent(event);
                } catch(error) {
                    $(this).trigger(event);
                }
            }
            else {
                $(this).trigger(event);
            }
        });
        return this;
    };
});
</script>
<input type="button" value="<<<<" id="my-back-button">
</body>
</html>
3
heliogabal

varreferrer = document.referrer; window.location.replace(referrer);

これを使用して動作します

0
Arsh Bajpai

Chrome以下のコードを使用:

<a href="#" onclick="javascript:history.go(-1);return false;" style="text-decoration:underline;">Back</a>

このコードのみが機能します。

私はそれが役立つことを願っています...ハッピーコーディング.. :)

0
Viishnuu