問題
使用 Javascript做出Foucs時,TextBox全選
解決方法
public void SetTextBoxSelected(TextBox from)or
{
from.Attributes.Add("onfocus", "document.getElementById('" + from.ClientID + "').select();");
}
public void SetTextBoxSelected(TextBox from)
{
from.Attributes.Add("onfocus", "javascript:this.select();");
}
沒有留言:
張貼留言