我的目标是仅支持 HTML5 浏览器的 AJAX 历史记录。但是,我希望我的网站可以使用 HTML4 浏览器,但没有 AJAX 历史记录。
许多 History.js 示例在执行任何操作之前都包含以下检查:
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;
}
除了 IE7 等较旧的浏览器不支持原生 JSON 并且 History.js 插件需要JSON.parse
和JSON.stringify
.
建议的解决方案是包含 json2.js(链接)。这对我来说似乎有点奇怪,因为支持pushState()
并且popState()
应该也支持原生 JSON 的 HTML5 浏览器。此外,我不想包含另一个我并不真正需要的库。我的解决方案是有条件地包含 History.js,如下所示:
var nativeJSON = (typeof JSON === 'object') && (typeof JSON.parse === 'function') && (typeof JSON.stringify === 'function');
if (nativeJSON) {
/// Include contents of: balupton-history.js-e84ad00\scripts\bundled\html5\jquery.history.js
} else {
window.History = { enabled: false };
}
这似乎有效,但感觉就像一个黑客。有一个更好的方法吗?
编辑:2012 年 7 月 31 日
如果我不包含 history.html4.js,它仍然会给我在 IE7 上的错误。目前看来,包含 json2.js 只是这个插件的一个要求。可以进行改进以静默检查 JSON 支持并禁用插件(如果没有),但现在我有一个解决方法。这是 History.js 的一个片段:
/**
* History.js Core
* @author Benjamin Arthur Lupton <contact@balupton.com>
* @copyright 2010-2011 Benjamin Arthur Lupton <contact@balupton.com>
* @license New BSD License <http://creativecommons.org/licenses/BSD/>
*/
(function(window,undefined){
"use strict";
// ========================================================================
// Initialise
// Localise Globals
var
console = window.console||undefined, // Prevent a JSLint complain
document = window.document, // Make sure we are using the correct document
navigator = window.navigator, // Make sure we are using the correct navigator
sessionStorage = window.sessionStorage||false, // sessionStorage
setTimeout = window.setTimeout,
clearTimeout = window.clearTimeout,
setInterval = window.setInterval,
clearInterval = window.clearInterval,
JSON = window.JSON,
alert = window.alert,
History = window.History = window.History||{}, // Public History Object
history = window.history; // Old History Object
// MooTools Compatibility
JSON.stringify = JSON.stringify||JSON.encode;
JSON.parse = JSON.parse||JSON.decode;
如果 window.JSON 未定义,引用 window.JSON.stringify 只会导致错误。