欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Asp.net 文本框全選的實(shí)現(xiàn)

 更新時(shí)間:2009年12月02日 00:58:28   作者:  
Asp.net 文本框全選的實(shí)現(xiàn)代碼,需要的朋友可以參考下。
一、鼠標(biāo)滑過(guò)textbox全選
前臺(tái):
<asp:TextBox runat="server" onMouseOver="this.focus();this.select()">dsdsds</asp:TextBox>

<asp:TextBox runat="server" onMouseOver="this.focus()" onFocus="this.select()">dsdsds</asp:TextBox>
后臺(tái):
this.txtbox1.Attributes.Add("onMouseOver", "this.focus();this.select();");

二、得到焦點(diǎn)
后臺(tái):
textbox1.Focus();
textbox1.Attributes.Add("onfocus","this.select()");

相關(guān)文章

最新評(píng)論