html基础 button按钮标签
作者:互联网
场景:在网页中显示用户点击的按钮注意:form不能少,少了不会出效果
标签名:button
html代码 <form > 昵称: <input type="text" placeholder="输入用户名"> <br><br> <!-- 提交按钮 --> <button type="submit">button提交按钮</button> <!-- 重置按钮 --> <button type="reset">button重置按钮</button> <!-- 普通按钮 --> <button type="button">button普通按钮</button> </form>
标签:form,标签,button,昵称,html,按钮 来源: https://www.cnblogs.com/jq-growup/p/15750559.html