HTML标签
<!-->
<!DOCTYPE>
<a>
<abbr>
<acronym>
<address>
<applet>
<area>
<article>
<aside>
<audio>
<b>
<base>
<basefont>
<bdi>
<bdo>
<big>
<blockquote>
<body>
<br>
<button>
<canvas>
<caption>
<center>
<cite>
<code>
<col>
<colgroup>
<command>
<datalist>
<dd>
<del>
<details>
<dfn>
<dialog>
<dir>
<div>
<dl>
<dt>
<em>
<embed>
<fieldset>
<figcaption>
<figure>
<font>
<footer>
<form>
<frame>
<frameset>
<head>
<header>
<hgroup>
<h1> - <h6>
<hr>
<i>
<iframe>
<img>
<input>
<ins>
<kbd>
<keygen>
<label>
<legend>
<li>
<link>
<map>
<mark>
<menu>
<meta>
<meter>
<nav>
<noframes>
<noscript>
<object>
<ol>
<optgroup>
<option>
<output>
<p>
<param>
<pre>
<html>
<progress>
<q>
<rp>
<rt>
<ruby>
<s>
<samp>
<script>
<section>
<select>
<small>
<source>
<span>
<strike>
<strong>
<style>
<sub>
<summary>
<sup>
<table>
<tbody>
<td>
<textarea>
<tfoot>
<th>
<thead>
<time>
<title>
<tr>
<track>
<tt>
<u>
<ul>
<var>
<video>
<wbr>
accept
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="Submit">
</form>
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="Submit">
</form>
浏览器支持
注意:几乎所有的主流浏览器都不支持 accept 属性。
定义和用法
在 HTML5 中,不支持 <form> accept 属性。
accept 属性规定能够通过文件上传进行提交的服务器接受的文件类型。
提示:请避免使用该属性作为验证工具。应该在服务器端验证文件上传。
语法
<form accept="MIME_type">
属性值
值 | 描述 |
---|---|
MIME_type |
允许被提交/被上传的一个或多个 MIME 类型。如需规定多个 MIME 类型,请使用逗号分隔它们。
请参阅 IANA MIME 类型,获得标准 MIME 类型的完整列表。 |