我知道,Windows窗体中有一个文本框控件属性,名为selectall()
。
我正在尝试在我的网络应用中实现相同的功能,对于文本框,一旦收到focus()
,我就会尝试选择文本框中的所有文字。
我知道我可以为此编写一些jquery,但是,有没有其他更简单的方法来实现这一点?
答案 0 :(得分:23)
试试这个:
<asp:TextBox ID="Textbox1" runat="server" onFocus="this.select()" />
答案 1 :(得分:11)
不,如果没有一些客户端脚本代码,就无法做到这一点。但是代码非常简单。在Page_Load
事件中,只需指定:
myTextBox.Attributes.Add("onfocus", "this.select()")
答案 2 :(得分:1)
Textbox1.Attributes["onFocus"] = "this.select()";