<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();" />
接受不起作用我可以上传任何东西。我需要一个过滤器解决方案来限制不安全的文件类型。
感谢您的帮助
答案 0 :(得分:0)
您应该像这样使用它:
<input name="file" type="file" id="fileA" accept="image/jpeg,text/obj" onchange="fileChange();"/>