0

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

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

我刚刚创建了一个小提琴来简化测试 http://jsfiddle.net/Vyuz5/

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

当我通过 localhost 加载文件时,我只会收到警报“地图”(立即,无需单击任何内容)。由于文档非常少,我不知道我在哪里遇到这些问题..

4

1 回答 1

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');
});

就是这样..为什么:)

修订版 1

于 2013-03-31T00:23:07.630 回答