码迷,mamicode.com
首页 > 其他好文 > 详细

为文本框绑定改变事件

时间:2015-06-08 11:30:55      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:

 

1.只能输入正整数的js动态验证

 <script>
        $(function () {
            $("#TextBox1").bind(‘input propertychange‘, function () {
                var regEx = /^\d+(\.\d+)?$/;
                var strVal = $(this).val();
                if (regEx.test(strVal) == false) {
                    $(this).val($(this).val().substring(0, length - 1));
                };
            });
        });
    </script>

 

<asp:TextBox ID="TextBox1" Width="120px" runat="server"></asp:TextBox>

为文本框绑定改变事件

标签:

原文地址:http://www.cnblogs.com/zinT/p/4560277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!