我正在使用<input type="file" webkitdirectory>
在Chrome上選擇文件夾。雖然我知道此功能僅適用於Chrome,但我想隱藏此按鈕,但不支持Firefox和IE等瀏覽器。在Firefox/IE上隱藏元素並僅在Chrome上顯示
我發現了一個帖子,建議做類似下面的代碼,但它在chrome和FF上都返回false。
$scope.isDirSupp = function() {
var tmpInput = $('#bulkyFolder');
if ('webkitdirectory' in tmpInput
|| 'mozdirectory' in tmpInput
|| 'odirectory' in tmpInput
|| 'msdirectory' in tmpInput
|| 'directory' in tmpInput) return true;
return false;
}
HTML: <input type="file" webkitdirectory id="bulkyFolder" ng-show="isDirSupp">
什麼是顯示在Chrome此按鈕隱藏在Firefox和IE的最佳方式?
謝謝!像魅力一樣工作。 – Mustang
歡迎您:)將此問題標記爲CSS,因爲接受的答案是相關的。 –