2016年7月28日

jsp页面点击显示影藏div的一个方法

摘要: 先影藏div #dis{display: none;} 给按键设置点击属性 <td><input type="button" class="btn" onclick="document.getElementById('dis').style.display = 'block';" value="添加 阅读全文

posted @ 2016-07-28 10:00 看你妹儿 阅读(1945) 评论(0) 推荐(0) 编辑

2016年7月27日

把用户权限存入session中,jsp页面通过判定权限的值限制按钮

摘要: <c:if test="${sessionScope.limit=='系统管理员' }"> <a href="addbuser.jsp">添加管理员账号</a></c:if> 阅读全文

posted @ 2016-07-27 15:43 看你妹儿 阅读(3181) 评论(0) 推荐(0) 编辑

2016年6月13日

用C3P0获取连接对象的方法

摘要: package gxa.bj.util; import java.sql.Connection;import java.sql.SQLException; import javax.sql.DataSource; import com.mchange.v2.c3p0.ComboPooledDataS 阅读全文

posted @ 2016-06-13 20:48 看你妹儿 阅读(1650) 评论(0) 推荐(0) 编辑

2016年6月12日

构建主键批注的方法

摘要: package gxa.bj.util; import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import 阅读全文

posted @ 2016-06-12 23:15 看你妹儿 阅读(186) 评论(0) 推荐(0) 编辑

通过反射,获得数据库增删改查的sql语句的方法

摘要: package gxa.bj.util; import java.lang.reflect.*; public class BeanUtil {// 根据某些条件查询语句 public static String getSelectSQL(Object obj) throws NoSuchMetho 阅读全文

posted @ 2016-06-12 23:14 看你妹儿 阅读(1993) 评论(0) 推荐(0) 编辑

sql语句

摘要: SQL常用命令使用方法:(1) 数据记录筛选:sql="select * from 数据表 where 字段名=字段值 order by 字段名 [desc]"sql="select * from 数据表 where 字段名 like '%字段值%' order by 字段名 [desc]"sql= 阅读全文

posted @ 2016-06-12 22:44 看你妹儿 阅读(158) 评论(0) 推荐(0) 编辑

2016年6月2日

用js做的注册的验证!

摘要: <!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title></title> <style type="text/css"> #smail { } </style> <script> var ifMail = false; 阅读全文

posted @ 2016-06-02 16:02 看你妹儿 阅读(490) 评论(0) 推荐(0) 编辑

js input 限制数类型

摘要: JS控制 input 输入字符限制 ENTER键可以让光标移到下一个输入框 <input onkeydown="if(event.keyCode==13)event.keyCode=9" > 只能是中文 <input onkeyup="value=value.replace(/[ -~]/g,'') 阅读全文

posted @ 2016-06-02 10:28 看你妹儿 阅读(739) 评论(0) 推荐(0) 编辑

2016年5月30日

js获取随机数的方法(搬运来的)

摘要: <script> function GetRandomNum(Min,Max){ var Range = Max - Min; var Rand = Math.random(); return(Min + Math.round(Rand * Range)); } var num = GetRando 阅读全文

posted @ 2016-05-30 20:12 看你妹儿 阅读(8141) 评论(0) 推荐(0) 编辑

获取32位随机码(uuid)的方法

摘要: public static String uuid(){ String getid=UUID.randomUUID().toString().replace("-", ""); return getid; } 阅读全文

posted @ 2016-05-30 20:06 看你妹儿 阅读(10156) 评论(0) 推荐(0) 编辑

导航