2013年5月30日
摘要: 邮箱\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*[a-z]日期\d{4}\-(0?[1-9]|1[012])\-(0?[1-9]|[12][0-9]|3[01]) 阅读全文
posted @ 2013-05-30 16:59 RocWang丶 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 冒泡排序static int[] Bubble(int[] arr) { int temp=0; for (int i = 0; i < arr.Length -1; i++) { for (int j = i+1; j < arr.Length; j++) { if (arr[i]>arr[j]) { temp = arr[i]; arr[i] = arr[j]; ... 阅读全文
posted @ 2013-05-30 14:48 RocWang丶 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 前两天让做一个下拉列表能显示图片的东东!从github上找到了这个插件,挺好用的,推荐给大家!应用时 $(selector).msDropDown();样例和脚本:点我下载插件主页(预览):http://www.marghoobsuleman.com/jquery-image-dropdown 阅读全文
posted @ 2013-05-30 14:34 RocWang丶 阅读(283) 评论(0) 推荐(0) 编辑