使用ajax响应在jQuery mobile中手动加载页面

时间:2013-03-17 23:03:01

标签: javascript jquery jquery-mobile

我有一个表单提交,由于某种原因我不能使用普通的jQuery mobile ajax提交。 我有类似的东西:

$('form[name="myForm"]').submit(function(e){
    var self = $(this)
    if ( validatefunction( self )  ) {
        e.preventDefault();
        $.post(self.attr('action'), self.serialize(), function (response) {
            // Here I would load the server response as a page
        });
    }
}); 

关键是我不知道如何使用服务器响应在jQuery mobile中加载新页面。

0 个答案:

没有答案