码迷,mamicode.com
首页 > Web开发 > 详细

文件和打印的技巧-判断文件上传的类型

时间:2016-09-29 21:30:08      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

———————————————————————————

<script type="text/javascript">        
            function chkform(){
                var str = document.forms[0].mypic.value;
                var name = str.substring(str.lastIndexOf(".")+1).toUpperCase(); //得到大写化的文件结尾
                if (name!="JPG"&&name!="GIF"&&name!=‘PNG‘&&name!=‘BMP‘){
                    alert("格式不正确");
                    return false;
                }else{
                    document.forms[0].submit();
                }
            }
</script>

————————————————————————

<body style="text-align:center">
        <form action="" method="post" enctype="multipart/form-data" name="myform" onsubmit="chkform();return false;">
          <label>
          <input type="file" name="mypic" />
          </label>
          <label>
          <input type="submit" name="Submit" value="提交"/>
          </label>
        </form>
    </body>

————————————————————————————

文件和打印的技巧-判断文件上传的类型

标签:

原文地址:http://www.cnblogs.com/hanxuming/p/5920911.html

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