实现History.js HTML4后备

时间:2011-08-25 07:17:24

标签: jquery html html5 jquery-plugins history.js

jQuery插件HISTORY.js(https://github.com/browserstate/History.js/)提供HTML5历史推送实现功能,如果浏览器不支持,则应该能够实现HTML4主题标签功能。 documentation / README文件详细说明了用法:

   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;
    }

正如您所看到的,该文档解释了HISTORY.js插件在HTML5中的用法,并未解释HTML4支持的用法。

但是,在文档的“下载和安装”部分中,它显示为:

5. Include History.js 
<script src="http://www.yourwebsite.com/history.js/scripts/compressed/history.js">/script>
<script src="http://www.yourwebsite.com/history.js/scripts/compressed/history.html4.js"></script>

此处的说明可能表明HTML4主题标签支持是自动的,但使用页面上的说明表明必须手动实现;我相信其实是这样的。

我找不到任何有关实现HTML4主题标签功能的文档。请帮我解决这个问题。

1 个答案:

答案 0 :(得分:1)

好吧也许问题是你没有以正确的方式使用History.js(这也是我遇到的问题)。基本上,要以正确的方式使用History.js,您必须执行以下操作:

// Register navigation click handlers where you will load Ajax content
$( window ).on( 'click', 'a.ai1ec-load-view', handle_click_on_link_to_load_view );
// Bind to the statechange event
$( window ).bind( 'statechange', handle_state_change );

// When the state changes, load the corresponding view
var handle_state_change = function( e ) {
    var state = History.getState();
    load_view( state.url, 'json' );
};

// When clicking on a link you want to load, trigger statechange by changing state
var handle_click_on_link_to_load_view = function( e ) {
    e.preventDefault();
    History.pushState( { target :this }, null, $( this ).attr( 'href' ) );
};

在此之前,我没有收听statechange,而我只是在链接点击处理程序中使用了pushState()。

如果您这样做,则无需编写回退代码,它也可以在html4浏览器中使用(并且html4浏览器中的书签将按预期工作)