表单普通按钮。
<form>
<!-- button 只是一个普通按钮,默认状态下不会触发任何功能事件 -->
<!-- button 的 type 值可以设置为 submit 这样它也具备了提交的属性 -->
<input type="text" /> <button type="button">提交</button>
</form>
控件效果
form 标签
的一些属性,例如 method
、enctype
、target
、novalidate
等,也可以在 button
中得到实现。
按钮属性 | 含义 |
---|---|
formaction | 覆盖 <form action=""> |
formenctype | 覆盖 <form enctype=""> |
formmethod | 覆盖 <form formmethod=""> |
formtarget | 覆盖 <form formtarget=""> |
formnovalidate | 覆盖 <form novalidate=""> |