HTML <button> 标签type属性

  • <button>标签type属性定义和用法

    type属性指定按钮的类型。
    提示:始终为<button>元素指定type属性。不同的浏览器可能会为<button>元素使用不同的默认类型。

  • <button>标签type属性浏览器支持

    Edge/IE Chrome FireFox Safari Opera
    支持 支持 支持 支持 支持
  • <button>标签type属性语法

    <button type="button|submit|reset">

  • <button>标签type属性实例

    <!DOCTYPE html>
    <html>
    <body>
    <form action="/jc_script/action.php" method="get">
      First name: <input type="text" name="fname"><br>
      Last name: <input type="text" name="lname"><br>
      <button type="submit" value="Submit">提交</button>
      <button type="reset" value="Reset">重置</button>
    </form>
    </body>
    </html>
    尝试一下
  • HTML4.01和HTML5之间的差异

    没有。

  • <button>标签type属性值

    属性值 描述
    button 按钮是可点击的按钮
    submit 按钮是提交按钮(提交表单数据)
    reset 该按钮是一个重置按钮(将表单数据重置为其初始值)