一、滑鼠滑過textbox全選
以上就介紹了always in my heart Aspnet 文字方塊全選的實現,包括了always in my heart方面的內容,希望對PHP教程有興趣的朋友有所幫助。
前台:
後台:
this.txtbox1.Attributes.Add("onMouseOver", "this.focus();this.select();");
二、得到焦點
後台:
textbox1.Focus();
textbox1.Attributes.Add("onfocus", "this.select()");