复制代码 代码如下:
然后是CenterPage.html框架中的代码,也就是tabs框架中的代码:
复制代码 代码如下:
Jquery的扩展代码:
复制代码 代码如下:
var sy = $.extend({}, sy);
sy.serializeObject = function (form) {
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;
};
图示:



