0

我正在研究这项技术:History API pushState (HTML5)

我需要使用带有重定向重定向的 URL 的命令,因为我有服务器的 CherryPy。

我无法从 Cherrypy 传递数据(使用 Mako 模板到 Javascript),但我想更改 url。

旧网址是

file:///media/DATA/prototypefin4/s.html

foo=1&foo=2并使用 History.pushState 在 Url 中自动添加(variable s)

file:///media/DATA/prototypefin4/s.html?=foo=1&foo=2

但是如何?

我的代码:

<!DOCTYPE HTML>
<html>
<head>
<title>Example - History API pushState</title>
</head>
<script src="http://balupton.github.com/history.js/vendor/jquery.js"></script>
<script src="http://balupton.github.com/history.js/scripts/bundled/html4+html5/jquery.history.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
<body>

<input id = 'button1' type = 'button' value = 'history.pushState' onclick="updateHistory()"/>

<script type = 'text/javascript'>

var count ="?foo=1&foo=2";

function updateHistory()
{

 History.pushState(count,null,file:///media/DATA/prototypefin4/s.html);

}

</script>

</body>
</html>
4

1 回答 1

2

您的脚本在语法上无效。根据文档,以下参数是正确的:

History.pushState(null, "", "file:///media/DATA/prototypefin4/s.html"+count);
于 2013-03-25T15:47:12.477 回答