pathJS不起作用 - 不加载任何内容

时间:2013-03-30 21:58:43

标签: javascript jquery zurb-foundation path.js

我尝试将pathJS实现到我的项目中,该项目已经将zurb.Foundation与jQuery结合使用。

到目前为止,我的JS非常干净,所以根本不应该有任何问题。

I just created a fiddle to ease up testing http://jsfiddle.net/Vyuz5/

Chrome开发者工具指出了这个错误:Uncaught TypeError: Cannot call method 'apply' of undefined

当我通过localhost加载文件时,我只是收到警告'map'(立即,没有点击任何内容)。 由于文档很少,我不知道我有哪些问题..

1 个答案:

答案 0 :(得分:0)

好吧..修好了。 我只需要在调用后删除处理程序:

Path.map("#/link1").to(function(){
  doNothing("it did it!");
  $('#loading').html('bazinga');
}).enter(doNothing('map_link1'));

Path.map("#/link1").to(function(){
  doNothing("it did it!");
  $('#loading').html('bazinga');
});

就是这样......为什么:)

Revision 1