HTML 参考手册
HTML <form> accept 属性
规定在文件上传中,服务器只接受 gif 和 jpeg 文件
源代码:
点击运行 »
<form action="form_action.html" accept="image/gif,image/jpeg"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> Your image: <input type="file" name="pic" id="pic"><br> <input type="submit" value="提交"> </form>
运行结果:
点击运行 »