我正在使用 History.js 通过菜单导航用户。
Menu content
home |-------|
books | |
vidoes | |
about |_______|
HTML:
<div class="menu" id="home">Home</div>
<div class="menu" id="books">Books</div>
<div class="menu" id="videos">Videos</div>
<div class="menu" id="about">About</div>
<div id="container_main_content"></div>
jQuery:
$(
function()
{
// Prepare
var History = window.History; // Note: We are using a capital H instead of a lower h
if ( !History.enabled ) {
// History.js is disabled for this browser.
// This is because we can optionally choose to support HTML4 browsers or not.
return false;
}
// Bind to StateChange Event
History.Adapter.bind(window,'statechange',function()
{ // Note: We are using statechange instead of popstate
var State = History.getState();
console.log(State);
$.get(State.url,function(data)
{
$("#container_main_content").html("");
$("#container_main_content").append(data);
});
});
$('.menu').click(function(evt)
{
switch(evt.target.id)
{
case "home":History.pushState(null, $(this).text(), "/main/main.php?state="+evt.target.id+"&action=nav");
break;
case "books": History.pushState(null, $(this).text(), "/books/books.php?state="+evt.target.id+"&action=nav");
break;
/*and so on....*/
}
问题是 History.pushState() 中指定的 url 只是一个 php 脚本,它与无样式的数据相呼应。因此,当用户重新加载页面时,新页面的元素排列随意,没有任何样式。关于如何克服这个问题的任何建议?提前致谢。