摘要:
1.表达式“xxx”在所调用的action里没有与之对应的对象; 2.action里有该对象作为私有成员变量但是没有get&set方法。 阅读全文
摘要:
$("input[type='checkbox']:checked",window.opener.document);//适用于打开窗口的父页面元素获取 $("input[type='checkbox']:checked",parent.document);//适用于iframe子页面获取父页面元素 阅读全文
摘要:
$(function(){ $("#frm").validateForm({ rules:{ 'caResourceStandard.resourceName':{ required:true, remote:{ type:"post", url:"/concealedacceptance/caRe 阅读全文
摘要:
1. #将传入的数据都当成一个字符串,会对自动传入的数据加一个双引号。 2. $将传入的数据直接显示生成在sql中。 3. #方式能够很大程度防止sql注入。 4.$方式无法防止Sql注入。5.$方式一般用于传入数据库对象,例如传入表名. 6.一般能用#的就别用$. 阅读全文
摘要:
List<String> list = new ArrayList<String>(); list.add("str1"); list.add("str2"); int size = list.size(); String[] arr = (String[])list.toArray(new Str 阅读全文
摘要:
$.each(Array,function(i,value){ this; //this指向当前对象 i; //i表示当前下标 value; //value表示当前元素 }) 阅读全文
摘要:
AND PATROL_RESULT = #{patrolResult} AND PATROL_RESULT IS NULL 阅读全文
摘要:
//默认选中下拉列表 function checkOption(id,value){ var select = document.getElementById(id); var options = select.options; for(var i=0;i<options.length;i++){ if (optio... 阅读全文
摘要:
方法1: Timestamp d = new Timestamp(System.currentTimeMillis()); 方法2: Date date = new Date(); Timestamp nousedate = new Timestamp(date.getTime()); 阅读全文
摘要:
$.post("/patrol/patrolDataContent!deleteContent.action",{"ids":ids},function(data){ tips(eval("("+data+")").msg); toQuery();} jquerySubmit("frm","/civilizationconstruction/randomInspect!... 阅读全文