HTML button 标签
button 标签 -- 定义按钮
button标签示例
<button
type
=
"submit"
>
提交</button>
一个使用文字的普通的提交按钮。
<button
type
=
"reset"
>
从<strong>
梦之都</strong>
提交表单</button>
改变按钮内加重文字的button标签。
<button
type
=
"button"
>
<img
src
=
"dreamdu.gif"
alt
=
"提交"
/>
</button>
使用图片的button标签,注意有alt的提示文字。