怎么让图片按钮点击重置

来源:互联网 发布:如何制作网络综艺节目 编辑:程序博客网 时间:2024/04/28 11:26

 <style type='text/css'>
button{border:none;background:transparent;cursor:pointer;}
</style>
<form METHOD="POST" name="form" action="SaveguestbooK.asp">
  <input name='test' />
  <button type="submit"><img src="http://bbs.blueidea.com/images/blue/newtopic.gif" alt='提交' /></button>
  <button type="reset"><img src="http://bbs.blueidea.com/images/blue/poll.gif" alt='重置' /></button>
</form>

 

<form METHOD="POST" name="form" action="SaveguestbooK.asp">
<input name='test' />
     <input name="Submit" input type="image" src="images/submit.gif">
     <input  name="reset"  input type="image" src="images/reset.gif" onClick="form.reset();return false;">
</form>

原创粉丝点击