当前位置: 代码迷 >> ASP.NET >> 怎么在客户端清除 服务器端 textbox 里的内容,避免页面刷新
  详细解决方案

怎么在客户端清除 服务器端 textbox 里的内容,避免页面刷新

热度:1558   发布时间:2013-02-25 00:00:00.0
如何在客户端清除 服务器端 textbox 里的内容,避免页面刷新
rt
谢谢

------解决方案--------------------------------------------------------
function ClearIt()
{
document.getElementById( "TextBox1 ").value= " ";
}
<input id= "btn " type = "button " onclick= "ClearIt() ">

------解决方案--------------------------------------------------------
<asp:TextBox ID= "TextBox1 " runat= "server "> </asp:TextBox>

<a href=# onclick= "dd() "> asdfasdfasfd </a>
<script type= "text/javascript ">
function dd()
{
document.getElementById( " <%= this.TextBox1.ClientID%> ").value= " ";
}
</script>
  相关解决方案