上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
  2015年3月27日
摘要: JSONObject jo = JSONObject.fromObject(map); 常见的java代码转换成json1:List集合转换成json代码List list = new ArrayList();list.add( "first" );list.add( "second" );J... 阅读全文
posted @ 2015-03-27 20:19 dobestself_994395 阅读(119) 评论(0) 推荐(0) 编辑
摘要: varstr = "hello";str.charAt(0) = hstr.charAt(5) = " "应用:重点与非重点的标识。 阅读全文
posted @ 2015-03-27 19:06 dobestself_994395 阅读(204) 评论(0) 推荐(0) 编辑
摘要: $("#apply_survey").button().click(function() {}); .button()这个方法是Jquery-UI.js 带的 会让加上jquery-UI的按钮样式,调用这个方法之前必须应用jquery-ui.js$('#clickmebind').bind("cl... 阅读全文
posted @ 2015-03-27 19:03 dobestself_994395 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 查询:查询将会返回一个游标,游标只会在你需要的时候才将需要的文档批量返回;还有许多针对游标执行的元操作,包括忽略一定数量的结果,或者限定返回结果的数量,以及对结果的排序。可以用向查询文档中添加键值对的形式限定查询条件。如:db.users.find({"usernaem":"joe","age":2... 阅读全文
posted @ 2015-03-27 15:39 dobestself_994395 阅读(140) 评论(0) 推荐(0) 编辑
  2015年3月26日
摘要: hashcode()方法和equals()方法。使用这两个方法,一个对象能够存储或从一个Hashtable,HashMap,HashSet 被检索。hashcode():This method is used to get unique integer for given object. This ... 阅读全文
posted @ 2015-03-26 20:37 dobestself_994395 阅读(167) 评论(0) 推荐(0) 编辑
摘要: public String execute(){ list = new ArrayList(); UserInfo userInfo = new UserInfo(); userInfo.setUsername("u1"); userInfo.setPassword("p1"); userInfo.... 阅读全文
posted @ 2015-03-26 18:23 dobestself_994395 阅读(132) 评论(0) 推荐(0) 编辑
摘要: return 的返回值问题,函数中return一旦有返回值,就不在执行下面的语句,直接跳到函数调用的地方。表单中加上onsubmit="return false;"可以阻止表单提交。表单一定会提交,若不想让表单提交,则改成onsubmit属性就像是这个html对象的一个方法名,其值(一字符串)就是其... 阅读全文
posted @ 2015-03-26 18:19 dobestself_994395 阅读(147) 评论(0) 推荐(0) 编辑
摘要: Calendar cal = Calendar.getInstance(); int year = cal.get(Calendar.YEAR);// 获取年份 int month = cal.get(Calendar.MONTH);// 获取月份 阅读全文
posted @ 2015-03-26 15:49 dobestself_994395 阅读(123) 评论(0) 推荐(0) 编辑
摘要: value为-1时,当点击时不会触发选择事件 阅读全文
posted @ 2015-03-26 15:41 dobestself_994395 阅读(97) 评论(0) 推荐(0) 编辑
  2015年3月24日
摘要: function getPicPath() { var path= editor.html(); var start=path.indexOf("src")+5; var string=path.substring(start,path.length); var end... 阅读全文
posted @ 2015-03-24 17:04 dobestself_994395 阅读(158) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页