0

我想使用 jQuery 的 history.js 插件。代码是:

// Global
var History = window.History;
$(document).ready(function() {
  History.Adapter.bind(window, 'statechange', function(){
    console.log('Yeeeeeeaah!');
  });
  window.History.pushState(null, null, '#42');  // Yeeeeeeaah!
});
function anotherFunc() {
  window.History.pushState(null, null, '#test');  // Nothing happens
}

范围有什么问题?

4

1 回答 1

0

你没有执行anotherFunc

范围没有任何问题,但是您可以省略var History = window.Historyand just used History

于 2012-11-26T16:04:22.700 回答