js封装如何封装及实例
1、var contextPath = document.location.pathname;contextPath = contextPath.substr(0,contextPath.substr(1).indexOf("/")+1)+"/a";/*** jqgrid通用列表展示 后期还需要封装* @param tableList* @param columns* @param config*/function searchDataList(tableList , columns, config){ var formJson = ""; if(document.getElementById("searchForm")) formJson = changeAjaxFormData($('#searchForm')); tableList.jqGrid({ url: config.url, datatype: "json", toolbar: config.toolbar, styleUI: 'Bootstrap',// 设置jqgrid的全局样式为bootstrap样式 colModel:columns, postData:formJson, // 发送数据 viewrecords: true,

3、 prmNames : { page:"pageNo", rows:"pageSize", order: "order" }, gridComplete:function(){ tableList.closest(".ui-jqgrid-bdiv").css({ "overflow-x" : "hidden" }); }});}
