1

我有一个表单提交,由于某种原因我无法使用普通的 jQuery 移动 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 中加载新页面。

4

0 回答 0