我尝试将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'(立即,没有点击任何内容)。 由于文档很少,我不知道我有哪些问题..
答案 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');
});
就是这样......为什么:)