上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 35 下一页
摘要: 1.表达式“xxx”在所调用的action里没有与之对应的对象; 2.action里有该对象作为私有成员变量但是没有get&set方法。 阅读全文
posted @ 2017-01-19 15:43 如果屈原会编程 阅读(999) 评论(0) 推荐(0) 编辑
摘要: $("input[type='checkbox']:checked",window.opener.document);//适用于打开窗口的父页面元素获取 $("input[type='checkbox']:checked",parent.document);//适用于iframe子页面获取父页面元素 阅读全文
posted @ 2016-12-17 12:22 如果屈原会编程 阅读(1118) 评论(0) 推荐(0) 编辑
摘要: $(function(){ $("#frm").validateForm({ rules:{ 'caResourceStandard.resourceName':{ required:true, remote:{ type:"post", url:"/concealedacceptance/caRe 阅读全文
posted @ 2016-12-15 17:55 如果屈原会编程 阅读(2148) 评论(0) 推荐(0) 编辑
摘要: 1. #将传入的数据都当成一个字符串,会对自动传入的数据加一个双引号。 2. $将传入的数据直接显示生成在sql中。 3. #方式能够很大程度防止sql注入。 4.$方式无法防止Sql注入。5.$方式一般用于传入数据库对象,例如传入表名. 6.一般能用#的就别用$. 阅读全文
posted @ 2016-12-01 15:34 如果屈原会编程 阅读(583) 评论(0) 推荐(0) 编辑
摘要: List<String> list = new ArrayList<String>(); list.add("str1"); list.add("str2"); int size = list.size(); String[] arr = (String[])list.toArray(new Str 阅读全文
posted @ 2016-11-14 10:37 如果屈原会编程 阅读(466) 评论(0) 推荐(0) 编辑
摘要: $.each(Array,function(i,value){ this; //this指向当前对象 i; //i表示当前下标 value; //value表示当前元素 }) 阅读全文
posted @ 2016-11-14 10:32 如果屈原会编程 阅读(168) 评论(0) 推荐(0) 编辑
摘要: AND PATROL_RESULT = #{patrolResult} AND PATROL_RESULT IS NULL 阅读全文
posted @ 2016-10-29 22:07 如果屈原会编程 阅读(10090) 评论(0) 推荐(0) 编辑
摘要: //默认选中下拉列表 function checkOption(id,value){ var select = document.getElementById(id); var options = select.options; for(var i=0;i<options.length;i++){ if (optio... 阅读全文
posted @ 2016-10-27 17:23 如果屈原会编程 阅读(629) 评论(0) 推荐(0) 编辑
摘要: 方法1: Timestamp d = new Timestamp(System.currentTimeMillis()); 方法2: Date date = new Date(); Timestamp nousedate = new Timestamp(date.getTime()); 阅读全文
posted @ 2016-10-25 09:55 如果屈原会编程 阅读(4043) 评论(0) 推荐(0) 编辑
摘要: $.post("/patrol/patrolDataContent!deleteContent.action",{"ids":ids},function(data){ tips(eval("("+data+")").msg); toQuery();} jquerySubmit("frm","/civilizationconstruction/randomInspect!... 阅读全文
posted @ 2016-10-21 10:58 如果屈原会编程 阅读(1133) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 35 下一页