jquery问题
/*** 员工信息显示GRID初始化
*/
$("#currentGrid").flexInit( {
url : $.webPath + 'monitormain/search.do?p.starttime="21"',
//buttons : [ button_new, button_modify, button_delete ],
colModel : g_colmodel,
//param:
autoload : true,
title : '代理信息',
useRp : true,
rp : 15,
rpOptions : [ 10, 15, 20 ],
nohresize : true,
isShowRowNum : true,
sortname : "brokername",
sortorder : "asc"
});
这里面flexInit中如何传参数到后台,有什么传参属性没有? --------------------编程问答-------------------- what's this? A plugin? --------------------编程问答-------------------- --------------------编程问答-------------------- http://blog.sina.com.cn/s/blog_629788b70100j47c.html --------------------编程问答-------------------- 不懂楼主是什么意思,你所说的属性,是指使用flexInit方法时,传参属性?是为了传参吗?还是传参的方式不同?具体也没用过这个插件,建议楼主可以看看这个插件的文档. --------------------编程问答-------------------- 在url中已经添加了参数,后台可以获取:
url : $.webPath + 'monitormain/search.do?p.starttime="21"',
补充:Java , Java EE