一、html submit与bottom按钮基本语法结构
1、html submit按钮
在input标签里设置type="submit"即可设置此表单控件为按钮。
submit按钮代码:
复制代码代码如下:<input name=”” type=”submit” value=”提交” />
submit按钮效果截图
html submit按钮效果截图
2、html bottom按钮
在input标签里设置type="bottom"也是即可设置此表单控件为按钮。
bottom按钮代码:
复制代码代码如下:<input name=”” type=”button” value=”提交” />