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