我有这个脚本来提取表单数据并序列化为Json Object:
form = document.forms[0];
$.fn.serializeObject = function () {
var o = {};
var a = this.serializeArray();
$.each(a, function () {
if (o[this.name] !== undefined) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
} else {
o[this.name] = this.value || '';
}
});
return o;
};
$(function () {
form.submit(function () {
result.append(JSON.stringify(form.serializeObject()));
return false;
});
});
我想把它放在一个html按钮然后发送导致控制器的对象。但是怎么样? 该动作将是一个JSONResult()? 我怎么能做到这一切? THX
答案 0 :(得分:0)
在按钮上附加onclick事件。 使用jquery ajax调用将json发布到控制器中的操作 将动作结果作为json对象返回。 在jquery ajax调用过程的成功事件上做任何你想做的事。
有关详细信息,请参阅Google!