从-1到无限大,只能是整数,谢谢啦

解决方案 »

  1.   

    <!DOCTYPE html>
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
            <title>Insert title here</title>
        </head>
        <body>
            <input id="input" type="text" value="" />
            <script type= "text/javascript">
                var reg = /^(?:\-1|0|[1-9]\d*)$/;
    document.getElementById("input").onchange = function(){
    alert(reg.test(this.value));
    }
            </script>
        </body>
    </html>