0
<form action="" method="post" enctype="multipart/form-data">
<input name="file" type="file" id="fileA" accept="image/jpeg" accept="text/obj"     onchange="fileChange();"/>
<input name="upload" value="Upload" type="button" onclick="uploadFile();" />
<input name="abort" value="Abbrechen" type="button" onclick="uploadAbort();" />

接受不同意的作品,我可以上传任何东西。我需要一个过滤器解决方案来限制不安全的文件类型。

感谢您的帮助

4

1 回答 1

0

你应该像这样使用它:

<input name="file" type="file" id="fileA" accept="image/jpeg,text/obj"     onchange="fileChange();"/>
于 2016-09-21T14:38:39.650 回答