7

我正在尝试让 history.js 在 Internet Explorer 中工作,因为我需要 history.pushState() 才能工作。我已经阅读了 GitHub ( https://github.com/browserstate/History.js/ ) 上的说明并尝试实现它,但没有取得任何成功。这就是我所拥有的

<!DOCTYPE html>
<html>
<head>
    <!-- jQuery --> 
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> 
    <!-- History.js --> 
    <script defer src="http://balupton.github.com/history.js/scripts/bundled/html4+html5/jquery.history.js"></script> 
    <script type="text/javascript">
        function addHistory(){

            // Prepare
            var History = window.History; // Note: We are using a capital H instead of a lower h

            // Change our States
            History.pushState(null, null, "mylink.html"); 
        }      
    </script>
</head>
<body>
    <a href="mylink.html">My Link</a>
    <a href="otherlink.html">Other Link</a>
    <button onclick="addHistory()" type="button">Add History</button>   
</body>

不知道我做错了什么,但它绝对不适用于 IE8 或 IE9。它确实在 Firefox 中工作,但这可能是因为 Firefox 实际上支持 history.pushstate 开始。任何帮助表示赞赏

4

1 回答 1

1

在第二个<script>标签中删除单词defer
因为,如果你提到那个词,就意味着推迟。(如果您想保存它以减少页面渲染的阻塞,请不要删除它)。IE也非常严格,这就是你遇到这个问题的原因。希望能帮助到你

参考这个

于 2013-05-08T10:30:22.173 回答