Maison > Article > interface Web > 基于datagrid框架的查询_jquery
然后是CenterPage.html框架中的代码,也就是tabs框架中的代码:
Jquery的扩展代码:
sy.serializeObject = function (form) { /*将form表单内的元素序列化为对象,扩展Jquery的一个方法*/
var o = {};
$.each(form.serializeArray(), function (index) {
if (o[this['name']]) {
o[this['name']] = o[this['name']] + "," + this['value'];
} else {
o[this['name']] = this['value'];
}
});
return o;
};
图示: