当前位置: 代码迷 >> ASP.NET >> 关于<input type="reset" value="清空" />的有关问题
  详细解决方案

关于<input type="reset" value="清空" />的有关问题

热度:8865   发布时间:2013-02-26 00:00:00.0
关于<input type="reset" value="清空" />的问题
如题,,这样写可以将
<asp:textbox   id= "textbox1 ">
中的值清空

但是我不想用系统默认的按纽
用图片代替
该如何实现清空啊

最好有代码

------解决方案--------------------------------------------------------
net 2.0
<asp:textbox id= "textbox1 ">
如果textbox是服务器控件,那么应该这样写:
<img onclick= "javascript:document.getElementById( ' <%=textbox1.ClientID %> ').value= ' ' " src= "img/1.jpg " />
  相关解决方案