- 博客(2)
- 收藏
- 关注
原创 随机数组(Random的使用)
利用Random类生成一个 1到30 之间的整数数组 不包括0 private static Random random = new Random(); public static int[] creat(int len){ int data[] = new int[len]; int foot = 0 ; while (foot < len){ int num = random.nextInt(30) if(num != 0){ data[foot++] = num; }
2020-06-15 19:55:32 1196
原创 jqgrid学习笔记
jqgrid学习笔记 一、知识点笔记 1、获取选中行数据 var rowIds = delegateScopePersonGrid.jqGrid("getGridParam", "selarrrow"); $.each(rowIds, function (index, rowId) { var rowData = delegateScopePersonGrid.jqGr...
2019-08-14 23:27:33 173
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人