我正在尝试让 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 开始。任何帮助表示赞赏