文件上传完成删除文件名?

时间:2015-05-11 10:17:03

标签: javascript html angularjs

我正在使用angularjs,我的问题是在上传文件后文件名仍然在眉毛上按钮。我想在上传文件后删除文件名,上传文件后(上传完成)我想显示没有文件被选中。 这是我的榜样。 Fiddle

2 个答案:

答案 0 :(得分:1)

你弄错了Demo有错误

  • Angular library not included
  • 缺少ng-app="myApp"

根据需要考虑使用以下代码:

var myApp = angular.module('myApp', []);
myApp.controller('myCtrl', function($scope) {
    $scope.upload = function(){
        alert('Removing file');
        $scope.myFile = "";
    };
});

Working DEMO

答案 1 :(得分:0)

为此写下这个css。

input[type="file"]{
width:90px; /*reduce input width*/
color: transparent /*text will be there but not visible*/
}

input[type="file"]{
    color: transparent; /*text will be there but not visible*/
}