摘要: 只能输入数字:"^[0-9]*$"。 只能输入n位的数字:"^\d{n}$"。 只能输入至少n位的数字:"^\d{n,}$"。 只能输入m~n位的数字:。"^\d{m,n}$" 只能输入零和非零开头的数字:"^(0|[1-9][0-9]*)$"。 只能输入有两位小数的正实数:"^[0-9]+(.[0 阅读全文
posted @ 2016-09-22 15:40 小博记 阅读(116) 评论(0) 推荐(0)
摘要: 1:页面前端中对单个值进行转码 url: "ExtjsDemo.aspx?userName=" + encodeURI(userName) + "&passWord=" + encodeURI(pwd) + "" 阅读全文
posted @ 2016-09-22 15:20 小博记 阅读(563) 评论(0) 推荐(0)