我有一个输入文件,允许所有扩展名,但通常会上传pdf。
<input id="myFile" name="myFile" type="file"></input>
var myDocument = $('#myFile').val();
myDocument = 'file:///' + myDocument;
var popup = window.open(documento,
'Documentos',
'titlebar=no,toolbar=no,location=no,status=no,menubar=no,resizable=no,width=800,height=600,top=0,left=0,type=fullWindow,fullscreen=no,scrollbars=yes');
});
“document”具有正确的本地路径,但我在控制台中出错:
SCRIPT5: Access is denied.
如果我复制&amp;粘贴文档的值,它会打开文件。
是否可以在上传前预览文件?