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

基础 - 验证文件类型

时间:2016-08-10 15:56:42      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

<input id="show" type="file" />


window.onload = function () {

var oShow = document.getElementById("show");
oShow.onchange = function () {

var filePath = this.value;
var suxPath = filePath.substr(filePath.lastIndexOf(".")+1).toUpperCase();
console.log(suxPath);
}

}
 

基础 - 验证文件类型

标签:

原文地址:http://www.cnblogs.com/WeWeZhang/p/5756828.html

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