10 2016 档案
JSP控制输入框只能输入数字并且限制输入小数为两位
摘要:<input id="sale_income" class="form-control" placeholder="默认到小数点后两位" onkeyup="this.value=this.value.replace(/^(\-)*(\d+)\.(\d\d).*$/,'$1$2.$3')" onaft 阅读全文
posted @ 2016-10-20 19:54 XMY_Lydia 阅读(1057) 评论(0) 推荐(0)
mysql向表格添加外键
摘要:用于mysql当表格已经建好之后再向它添加外键: alter table table1 add foreign key (id) references table2(id); 阅读全文
posted @ 2016-10-12 19:57 XMY_Lydia 阅读(140) 评论(0) 推荐(0)