摘要:
要想在两个浏览器下都能居中,除了父级对象 {text-align: center;}外还要让你的div左右边界自动:{margin-right: auto; margin-left: auto;} 2.ie有的时候不给宽,它不居中! 阅读全文
摘要:
strtus1:input="/input.jsp" --表示出错时进入的页面①parameter="method" paramether 是要执行的方法②path="/reg" 表示要执行的action③type="com.test.action.RegAction" 表示具体的要执行的action类④<forward name="success".......> 表示根据具体action类返回的字符串选择进入的页面在com.test.action.RegAction 要继承Dis 阅读全文
摘要:
load data local infile 'D:\\data.txt' into table 表名 fields terminated by '\t'; 注意文件保存类型应该是你数据库set的类型 比source效率高 阅读全文
摘要:
1. 利用json创建对象 var company = {}; company.name= '华为'; company.address = '北京'; company.produce = function(message) { alert(message); } 2.使用JavaScript中的Ob 阅读全文
摘要:
1.基本json类JSONObject json=new JSONObject(); JSONObject jb = JSONObject.fromObject(jsonString); -->是一个String 2.json数组 JSONArray jsonArray = new JSONArra 阅读全文