摘要: <script type="text/javascript"> function checkform() { var re; var ss = document.getElementById('txtMobile').value; re = /^(1[358][0-9]{9})$/; if (re. 阅读全文
posted @ 2018-08-11 17:39 猫着鱼 阅读(1447) 评论(0) 推荐(1) 编辑
摘要: .contronller 阅读全文
posted @ 2018-08-11 15:41 猫着鱼 阅读(882) 评论(0) 推荐(0) 编辑
摘要: [root@java ~]# /usr/local/webserver/mysql/bin/mysql -u root -pEnter password: Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL conne 阅读全文
posted @ 2018-07-20 13:57 猫着鱼 阅读(1165) 评论(1) 推荐(0) 编辑
摘要: zookeeper下载地址:http://mirrors.hust.edu.cn/apache/zookeeper 安装: 1.解压到e:\zookeeper 2.打开conf,复制里面的zoo_sample.cfg再重命名为zoo.cfg,粘贴在本文件夹下面,可添加数据和日志的文件夹在e:\zoo 阅读全文
posted @ 2018-07-19 11:22 猫着鱼 阅读(1828) 评论(0) 推荐(0) 编辑
摘要: 有时候我们的jar 加载不进工程,这时候我们可以选择手动下载缺失的包,然后cmd命令引入: 阅读全文
posted @ 2018-07-18 17:26 猫着鱼 阅读(542) 评论(0) 推荐(0) 编辑
摘要: Java注解是附加在代码中的一些元信息,用于一些工具在编译、运行时进行解析和使用,起到说明、配置的功能。 注解不会也不能影响代码的实际逻辑,仅仅起到辅助性的作用。包含在 java.lang.annotation 包中。 1、元注解 元注解是指注解的注解。包括 @Retention @Target @ 阅读全文
posted @ 2018-07-18 16:13 猫着鱼 阅读(1934) 评论(0) 推荐(0) 编辑
摘要: html js 阅读全文
posted @ 2018-07-11 15:47 猫着鱼 阅读(1307) 评论(0) 推荐(0) 编辑
摘要: var value = $('#adminFlag').combobox("getValue"); 阅读全文
posted @ 2018-07-11 15:34 猫着鱼 阅读(1481) 评论(0) 推荐(0) 编辑
摘要: var obj = document.getElementsByName("adminFlag"); for(var i = 0; i < obj.length; i ++) { if (obj[i].checked) { var type = obj[i].value; } } 阅读全文
posted @ 2018-07-11 15:33 猫着鱼 阅读(3720) 评论(0) 推荐(0) 编辑
摘要: 1.清空数据 阅读全文
posted @ 2018-07-11 15:23 猫着鱼 阅读(1671) 评论(0) 推荐(0) 编辑