最新的Web開發教程
 

HTML max Attribute


定義和用法

max屬性指定的元素的最大值。

當通過使用<progress>元素的max屬性指定的任務,總共多少錢的工作需要。


適用於

max屬性可以在下列元素一起使用:

分子 屬性
<input> max
<meter> max
<progress> max

例子

Input示例

使用的minmax屬性:

<form action="demo_form.asp">

  Enter a date before 1980-01-01:
  <input type="date" name="bday" max="1979-12-31">

  Enter a date after 2000-01-01:
  <input type="date" name="bday" min="2000-01-02">

  Quantity (between 1 and 5):
  <input type="number" name="quantity" min="1" max="5">

  <input type="submit">

</form>
試一試»

Meter示例

與當前值和計min, max, highlow段:

<meter min="0" low="40" high="90" max="100" value="95"></meter>
試一試»

Progress實例

正在下載:

<progress value="22" max="100"></progress>
試一試»

瀏覽器支持

max屬性為每個元素以下瀏覽器支持:

元件
input 5 10.0 16.0 5.1 10.6
meter 8 不支持 6 6 11.0
progress 8 10.0 16.0 6 11.0