摘要: 未完成 阅读全文
posted @ 2010-07-04 23:28 稽首本然 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 未完成 阅读全文
posted @ 2010-07-04 23:27 稽首本然 阅读(98) 评论(0) 推荐(0) 编辑
摘要: Java遍历各种数据类型使用总结1. ListList list=new ArrayList();list.add(); //添加元素list.add(); //添加元素list.add(); //添加元素 方法一 for(Iterator<A> temp =list.Iterator();it.hasNext();){ …}方法二for(A a: list){…}方法三for(int i=0;i<list.size();i++){ A a=list.get(i);}2. Map方法一Map m= new 阅读全文
posted @ 2010-07-04 23:26 稽首本然 阅读(4038) 评论(0) 推荐(0) 编辑
摘要: 未完成... 阅读全文
posted @ 2010-07-04 23:25 稽首本然 阅读(159) 评论(0) 推荐(0) 编辑
摘要: Jquery 基础概念总结最好从http://www.w3school.com.cn/jquery/jquery_selectors.asp开始1. $功能前缀2. window.onload事件2.1$(document).ready(function(){//…});//1文件加载时执行:<script src="js/jquery-1.3.2.min.js" type="text/javascript"></script> //引入 jQu 阅读全文
posted @ 2010-07-04 23:24 稽首本然 阅读(183) 评论(0) 推荐(0) 编辑