我有这个在
<asp:TextBox ID="svv" OnClick="this.value=''" runat="server">Hello...</asp:TextBox>
OnClick="this.value=''" // On mouse click in textbox it will deleted the text.
我怎样才能设置类似的东西
Unclick"this.defautlvalue"; // something like this.
因此,当我单击控件时,它将清除值,如果我退出控件(例如,单击另一个文本框),它将返回文本框的默认值。
谢谢