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.History使用することもできますHistory

于 2012-11-26T16:04:22.700 に答える