摘要: 1.文本框只能输入数字代码(小数点也不能输入)----------------------------------$(document).ready(function () { $("#txt_RowsCount").keypress(function () { if (!this.value.match(/^[\+\-]?\d*?\.?\d*?$/)) this.value = this.t_value; else this.t_value = this.value; if (this.value.match(/^(?:[\+\-]?\d+(?:\.\d+)?)?$/)) 阅读全文
posted @ 2013-08-30 15:09 Ciel Water 阅读(843) 评论(0) 推荐(0) 编辑