上一页 1 ··· 75 76 77 78 79 80 81 82 83 ··· 88 下一页
摘要: var grid = $('#datagrid'); var options = grid.datagrid('getPager').data("pagination").options; var curr = options.pageNumber; var total = options.tota 阅读全文
posted @ 2019-05-15 18:01 那些年的代码 阅读(2391) 评论(1) 推荐(1) 编辑
摘要: ibatis实现Iterate的使用 <iterate property="" /*可选, 从传入的参数集合中使用属性名去获取值, 这个必须是一个List类型, 否则会出现OutofRangeException, 通常是参数使用java.util.Map时才使用, 如果传入的参数本身是一个java. 阅读全文
posted @ 2019-05-15 17:56 那些年的代码 阅读(1741) 评论(0) 推荐(0) 编辑
摘要: window.location.reload()刷新当前页面. parent.location.reload()刷新父亲对象(用于框架) opener.location.reload()刷新父窗口对象(用于单开窗口) top.location.reload()刷新最顶端对象(用于多开窗口) 阅读全文
posted @ 2019-05-15 17:49 那些年的代码 阅读(237) 评论(0) 推荐(0) 编辑
摘要: StringBuffer ssBuffer=new StringBuffer(); for (int i = 0; i < lista.size(); i++) { ssBuffer=ssBuffer.append(lista.get(i).getEntid()+","); } ssBuffer.t 阅读全文
posted @ 2019-05-15 17:49 那些年的代码 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 将相应的echarts的option治为空 $("#tt5sbmc").html(""); 阅读全文
posted @ 2019-05-15 17:33 那些年的代码 阅读(2822) 评论(0) 推荐(0) 编辑
摘要: 定义和用法 encodeURI() 函数可把字符串作为 URI 进行编码。 语法 返回值 URIstring 的副本,其中的某些字符将被十六进制的转义序列进行替换。 说明 该方法不会对 ASCII 字母和数字进行编码,也不会对这些 ASCII 标点符号进行编码: - _ . ! ~ * ' ( ) 阅读全文
posted @ 2019-05-15 17:24 那些年的代码 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 输入框数字校验 $("#reg_num").textbox('textbox').bind('keyup', function(e){ $("#reg_num").textbox('setValue', $(this).val().replace(/\D/g,'')); }); <th width= 阅读全文
posted @ 2019-05-15 17:07 那些年的代码 阅读(3528) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-05-15 17:04 那些年的代码 阅读(4) 评论(0) 推荐(0) 编辑
摘要: <td width="40%"> <select class="easyui-combobox" id="work_property" name ="work_property" data-options="required:true" style="width: 300px;" editable= 阅读全文
posted @ 2019-05-15 16:05 那些年的代码 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 使用this()来从从某个某个构造函数调用同一个类的另外一个构造函数。 this()只能用在构造函数中,切必须是第一行语句。 super()和this()不能兼得。 阅读全文
posted @ 2019-05-15 12:25 那些年的代码 阅读(353) 评论(0) 推荐(0) 编辑
上一页 1 ··· 75 76 77 78 79 80 81 82 83 ··· 88 下一页