摘要:
public static void main(String[] args) { List list = new ArrayList(); list.add("日本"); list.add("中国"); list.add("美国"); list.add("德国"); //把随机取得的数据存储在 listRandom 中 List listRandom = new... 阅读全文
2019年6月19日
2019年6月14日
摘要:
1.html 中 2.查询出来的界面效果,需要导出以下数据. <a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-save" data-options="plain:true" onclick="ExporterE 阅读全文
2019年6月13日
摘要:
1.在table 中添加属性 remoteSort:false 用于将服务器对数据项排序设置为false(必须) 2.在需要用于排序的列添加 sortable:true,sorter:sorterorder 3.在html 中加入以下js(此方法用于对数字进行排序) <script> /* 后台传过 阅读全文