2

當我執行History.js到我的web應用程序爲缺少在Internet Explorer中的history.pushState()支持解決方法接收錯誤。使用History.js

到目前爲止,以下演示&教程我已經寫了下面的代碼:

SCRIPT5007:對象在Internet Explorer 9返回

var historyJs = window.History; 

historyJs.Adapter.bind(window, 'statechange', function() { 
    var State = History.getState(); 
    historyJs.log(State.data, State.title, State.url); 
}); 

不過,我發現了以下錯誤預計

jquery.history.js,line 1 character 3154

enter image description here

爲什麼我收到此錯誤?

+0

您是否發現了導致該錯誤的原因? – barry

+0

@barry沒有沒有,還在尋找一個解決方案 – Curt

回答

0

這聽起來像你缺少jQuery的參考。

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>