level 7
帮忙给个 ajax 表单提交跳 jsp 页面的例子 谢拉
2013年05月30日 03点05分
2
level 7
我现在搞个 从一个页面跳到另一个页面 但是前面那个页面使用了 jquery验证 然后使用 ajax 异步表单提交方式提交 ajax那个表单提交怎么写?????、
2013年05月30日 03点05分
4
level 7
ajax提交表单怎么会跳转页面呢?你要跳转页面就不用ajax吧
2013年05月30日 04点05分
7
level 9
$.alert()有这个函数的吗,而且怎么看都不像是使用了ajax的样子。
2013年05月30日 05点05分
9
level 6
$.ajax({type: "POST",
url: "url",
data:{ },
success:function(data){},
error:function(e) {}});
2013年05月30日 05点05分
13
level 13
$.ajaxSetup({
type:'post',
dataType:'text',
});
$.ajax({
url:'',
success:function(data){}
});
2013年05月30日 05点05分
14