JQTouch Switch Pages错误

时间:2012-02-19 21:17:21

标签: javascript jquery ajax jqtouch

我正在尝试使用JQTouch切换到另一个“页面”,但它似乎无法正常工作。 我的代码如下所示:

$('#main').on('submit', '#product-form', function() {

                     var jQT = new $.jQTouch();
                    jQT.goTo('#search-results', 'slide');

                });

抛出的错误如下所示:

Uncaught TypeError: Cannot set property 'framework' of undefined
j.jQTouchjqtouch.min.js:18
(anonymous function)1:146
a.fn.delegatezepto.min.js:4
jzepto.min.js:4
a.fn.triggerzepto.min.js:4
J.fn.eachzepto.min.js:4
J.fn.eachzepto.min.js:4
a.fn.triggerzepto.min.js:4
Ijqtouch.min.js:8
Ljqtouch.min.js:10
jzepto.min.js:4
a.fn.triggerzepto.min.js:4
J.fn.eachzepto.min.js:4
J.fn.eachzepto.min.js:4
a.fn.triggerzepto.min.js:4
Djqtouch.min.js:1

我做错了吗?

1 个答案:

答案 0 :(得分:0)

您可能需要将空对象传递给jQTouch(),如下所示:

var jQT = new $.jQTouch({});