依睛(IT blog) 我回来了,PHP<-->C/C++ LINUX

笨鸟

统计

积分与排名

友情连接

最新评论

数字验证

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=GB2312" />
        <title>Untitled Document</title>
    </head>
    <body>
    <table>
    <tr>
      <td width=100>fp</td>
      <td width=100>200/12/13</td>
      <td width=100>c:/fp/fd</td>
    </tr>
    </table>
        <input type="text" id="myInput" value="" />
        <input type="button" value="È·¶¨" id="myButton" />
    </body>
</html>
        <script language="JavaScript" type="text/javascript">
        function $(obj){
            return document.getElementById(obj);
        }
        function checkIsInteger(str)
        {
                //Èç¹ûΪ¿Õ£¬Ôòͨ¹ýУÑé
                if(str == "")
                return true;
               if(/^(\-?)(\d+)$/.test(str))
               return true;
             else
               return false;
         }
         String.prototype.trim = function()
        {
                return this.replace(/(^[\s]*)|([\s]*$)/g, "");
        }
        $("myButton").onclick=function(){
           
            if(checkIsInteger($("myInput").value.trim())){
                alert("³É¹¦");
            }else{
                alert("Ö»ÄÜÊÇÊý×Ö");
            }
        }
        </script>

posted on 2009-02-15 11:31 向左向右走 阅读(230) 评论(0)  编辑 收藏 引用 所属分类: 网站资料库

只有注册用户登录后才能发表评论。