Analytics

2012年6月2日 星期六

[ASP.NET]使用 TextBox.Attributes當Focus時,TextBox內容全選(When using TextBox.Attributes when Focus, TextBox or select all)


問題
使用 TextBox.Attributes當Focus時,TextBox內容全選



解決方法
在PageLoad事件裡加入
Textbox1.Attributes.Add("onfocus", "SetSelected();")
在aspx上加入
function SetSelected()
{
document.getElementById("Textbox1").select();
}
或是直接在cs裡指定
Textbox1.Attributes.Add("onfocus", "javascript:this.select();")

沒有留言:

熱門文章