`

jquery.history简单理解

阅读更多
jquery.history的简单理解

原理是利用形如 main#page 的 url #page 被浏览器认为是锚点 。
因此,当我们点击一个链接,这个链接改变页面的锚点部分,但是实际上当锚点变化时,页面不刷新,但却可以产生前进/后退的记录。

jQuery history plugin helps you to support back/forward buttons and bookmarks in your javascript applications.

You can store the application state into URL hash and restore the state from it.



Supported browsers支持的浏览器
Internet Explorer 6, 7, and 8+的Internet Explorer 6,7和8 +
Safari 4 and 5+的
Safari 4和5 +
Google Chrome 4+
谷歌浏览器4 +
This plugin is built on hashchange event , which is defined in HTML5 and supported in most modern browsers. Unless it is supported the plugin works on some fallback mechanisms:这个插件是在建立在hashchange事件上的 ,这个hashchange是定义在HTML5中并且被最新的浏览器所支持。除非是支持一些后备插件工程:

monitoring location.hash by setInterval (Safari 4)
监测的setInterval location.hash(Safari 4中)
iframe and setInterval (IE 6, 7, and compatibility mode on IE8)
iframe的和setInterval(即6,IE8的第7和兼容模式)


Known issues
已知问题
IE6, 7, and IE8 compatibility mode
在IE6,7和IE8的兼容模式
Back/forward button will not work if you refresh the page and the document is reloaded.
后退/前进按钮将不会工作,如果你刷新页面,该文件重新加载。
IE8 standards mode
IE8的标准模式
The current hash will not be recorded in the history if you update the URL hash by hand or loading bookmarks.
目前哈希将不会被记录在历史上,如果你用手或加载更新书签网址哈希。


其中的一些函数
$.historyLoad(hash);//其中就是判断各种浏览器,然后把hash加入到URL的锚点中。
$.historyInit(callback);//注意callback赋值给jQuery.historyCallback,然后再historyLoad中调用,jQuery.historyCallback(hash);
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics