0

ファイルアップロードコントロールでファイルのサイズを設定したい。InternetExplorerでエラーが発生します。しかし、これは他のブラウザで動作するコードです。次のコード

var fuDocument = document.getElementById('<%= fupAttachment.ClientID %>');
  var file = fuDocument.files[0];
            if (file != null) {
                var fileSize = file.size;
}

エラー'files.0'がnullであるか、オブジェクトではありません

4

1 に答える 1

1

私が考えることができる唯一のことは、これらの古き良き ActiveX オブジェクトを使用することです。

var axFile = new ActiveXObject("Scripting.FileSystemObject");
var fileObj = axFile.getFile(document.getElementById('<%= fupAttachment.ClientID %>').value);
var fileSize = {bytes: fileObj.size,
                kBytes: Math.round(fileObj.size/1024),
                mBytes: Math.round((fileObj.size/1024)/1024)};

これにより、古いバージョンの IE がサポートされるはずです。フル バージョン次のようになります。

var axFile, fileSize, 
fuDocument = document.getElementById('<%= fupAttachment.ClientID %>');
if (fuDocument.files)
{
    fileSize = fuDocument.files[0].size || 0;//default value = 0
}
else
{
    axFile = new ActiveXObject("Scripting.FileSystemObject");
    fileSize = (axFile.getFile(fuDocument.value) || {size:0}).size;//default to object literal, with size: 0 property --> avoids errors, and defaults to size value of zero
}
return fileSize;//console.log, alert... whatever you want
于 2012-12-15T09:15:15.817 に答える