//ajax提交表单,解决提交时关闭art 有时不能提交的情况
$("form:first").bind('submit', function(){
ajaxSubmit(this, function(data){ //回调
});
return false; });
//------------
//将form转为AJAX提交
function ajaxSubmit(frm, fn) {
var dataPara = getFormJson(frm);
$.ajax({
url: frm.action,
type: frm.method,
data: dataPara ,
success: fn
});
}
//将form中的值转换为键值对。
function getFormJson(frm) {
var o = {};
var a = $(frm).serializeArray();
$.each(a, function () {
if (o[this.name] !== undefined) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(encodeURIComponent( this.value || ''));
} else {
o[this.name] =encodeURIComponent( this.value || '');
}
});
return o;
}
Post Views: 597