我正在使用angularjs,我的问题是在上传文件后文件名仍然在眉毛上按钮。我想在上传文件后删除文件名,上传文件后(上传完成)我想显示没有文件被选中。
这是我的榜样。 Fiddle
答案 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 = "";
};
});
答案 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*/
}