摘要: /** * 保存表单 * @returns */ function AcceptClick() { if (!$('#form').Validform()) { return false; } var indexName = $("#indexName").attr('data-value'); $ 阅读全文
posted @ 2017-05-09 14:01 夜西门吹雪孤城花满楼 阅读(701) 评论(0) 推荐(0) 编辑
摘要: function initLine() { $.ajax({ url: basePath + 'veVehicle/veVehicleList/liLine_Data.action', type:"POST", dataType:'json', ... 阅读全文
posted @ 2017-05-03 09:25 夜西门吹雪孤城花满楼 阅读(171) 评论(0) 推荐(0) 编辑
摘要: { label: '购置日期', name: 'GRRQ', index: 'GRRQ', width: 150, align: 'center', sortable:false, formatter:'date',formatoptions: {newformat:'Y-m-d'}, }, 阅读全文
posted @ 2017-05-03 09:22 夜西门吹雪孤城花满楼 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 构建dubbo项目的时候会遇到: Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found f 阅读全文
posted @ 2017-05-02 10:28 夜西门吹雪孤城花满楼 阅读(511) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-04-25 09:42 夜西门吹雪孤城花满楼 阅读(5) 评论(0) 推荐(0) 编辑
摘要: //重置function btn_reset(){ $("#sel_menu").val("0").trigger("change"); } 阅读全文
posted @ 2017-04-24 09:38 夜西门吹雪孤城花满楼 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 1,只有方法有返回值或者需要中途中断的时候才会用return。2,只有执行到return才会返回。假如int a=1if(a==2){ return;}是不会返回的,会继续向下执行。3,如果方法有返回值,那么编译器会检查你的判断条件,如果发现有哪个if分支没有return,则会报错。 阅读全文
posted @ 2017-04-20 14:41 夜西门吹雪孤城花满楼 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 怎么编译调用第三方jar包的java文件 以前一直依赖eclipse,又由于是web项目直接部署在tomcat里的 根本没考虑过这个问题。 今天还一下难住了。谷歌了下 找到解决答案; 编译: javac -cp [jar包路径/jar包名] Test.java 运行 java -cp .;[jar包 阅读全文
posted @ 2017-04-12 14:52 夜西门吹雪孤城花满楼 阅读(180) 评论(0) 推荐(0) 编辑
摘要: function getGrid(){ $("#gridPanel").empty(); $("#gridPanel").append(""); var beginTime = $... 阅读全文
posted @ 2017-04-07 16:43 夜西门吹雪孤城花满楼 阅读(211) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-04-07 16:27 夜西门吹雪孤城花满楼 阅读(11) 评论(0) 推荐(0) 编辑