1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<body>标签中,输入html代码:<input type="submit" /><input type="reset" />。
3、浏览器运行index.html页面,此时成功实现了提交按钮和重置按钮。
reset是input的一个类型,而input必须与form一起用才有效果。比如
<form>
<input type="text" value="" />
<input type="reset" value="重置按钮" />
</from>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)