php文件扩展名判断,_PHP教程

WBOY
풀어 주다: 2016-07-13 16:53:50
원래의
692명이 탐색했습니다.

php文件扩展名判断,

<!DOCTYPE>
<html>
<head>
    <meta http-equiv="Content-type" content="text/html" charset="utf-8">
    <title>check <span>file</span></title>
</head>
<body>
<b>文件扩展名验证</b>
<input type="text" name="int" value="文件.php" onblur="check(this)" id="int">
<input type="button" value="检测" onclick="check_value()">

<script>
    <span>function</span><span> check(obj){
        </span><span>if</span>(obj.value == "" || obj.value.length<3<span>){
            alert(</span>"输入的长度不能小于3且不能为空!"<span>);
            obj</span>.<span>focus();
        }
    }
    </span><span>function</span><span> check_value(){
        </span><span>var</span> str = $("int").<span>value;
        </span><span>var</span> repx = /\.(php|asp|jsp)$/<span>i;
        </span><span>var</span> type = str.substring(str.lastIndexOf("."),str.<span>length);
        </span><span>if</span>(type.match(repx) && str.lastIndexOf(".") != -1<span>){
            alert(</span>"文件扩展名正确"<span>);
            $(</span>"int").<span>focus();
        }</span><span>else</span><span>{
            alert(</span>"文件扩展名有误"<span>);
            $(</span>"int").<span>focus();
        }
    }
    </span><span>function</span><span> $(obj){
        </span><span>return</span> document.<span>getElementById(obj);
    }
</span></script>

</body>
</html>
로그인 후 복사

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1053798.htmlTechArticlephp文件扩展名判断, !DOCTYPEhtmlhead meta http-equiv="Content-type" content="text/html" charset="utf-8" titlecheck file /title/headbodyb文件扩展名验证/binput type="t...
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿