C# 光标定位使用 T.Select(T.Text.Length, 0);

发布于 2024-12-11 08:18:01 字数 469 浏览 0 评论 0原文

我试图将光标定位在文本框的末尾......

<asp:TextBox ID="TextBox1" AutoPostBack="true" EnableViewState="true" 
   runat="server" OnTextChanged="TextBox1_TextChanged"></asp:TextBox>

然后

TextBox1.Select(TextBox1.Text.Length, 0);

Visual Studio 说:

"Error  5   No overload for method 'Select' takes 2 arguments D:\Doc\t.aspx.cs"

怎么做?

非常感谢。

问候。

吉乌斯。

I'm trying to position the cursor at the end of a textbox with.....

<asp:TextBox ID="TextBox1" AutoPostBack="true" EnableViewState="true" 
   runat="server" OnTextChanged="TextBox1_TextChanged"></asp:TextBox>

and then

TextBox1.Select(TextBox1.Text.Length, 0);

but Visual Studio says:

"Error  5   No overload for method 'Select' takes 2 arguments D:\Doc\t.aspx.cs"

How to do it?

Many thanks.

Regards.

Gius.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野侃 2024-12-18 08:18:01

您只能使用 JavaScript 来做到这一点。最简单的方法是在页面加载事件上聚焦文本框,然后将空字符串添加到其值。只需将此代码添加到您的 部分即可:

<script type="text/javascript">
window.onload = function() {
    var oInput = document.getElementById("<%=TextBox1.ClientID%>");
    oInput.focus();    
    oInput.value += "";
};
</script>

据我所知,它将达到预期的效果。
实时测试用例

You can do that only with JavaScript. Most simple way would be to focus the textbox then add empty string to its value, on page load event. Just add this code into your <head> section:

<script type="text/javascript">
window.onload = function() {
    var oInput = document.getElementById("<%=TextBox1.ClientID%>");
    oInput.focus();    
    oInput.value += "";
};
</script>

And it will have the desired effect as far as I can tell.
Live test case.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文