c# - 如何设置文本框中的文本以在文本框为空时显示提示?

发布于 2024-12-09 12:56:48 字数 151 浏览 1 评论 0原文

我使用的是 而不是 HTML 文本框,我想显示提示文本。

有什么办法可以实现这一点吗?

我尝试过制作静态文本并将其设置为灰色,但不知道当光标将焦点移到该文本框时如何将其清空。

I am using <asp:TextBox> not HTML textbox and I want to display hint text.

Is there any way to achieve that?

I have tried for making static text and color it gray but not getting how to make it empty when cursor get focus to that textbox.

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

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

发布评论

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

评论(7

奢华的一滴泪 2024-12-16 12:56:48
<asp:TextBox ID="TextBox1" runat="server" placeholder="Hint Text"></asp:TextBox>
<asp:TextBox ID="TextBox1" runat="server" placeholder="Hint Text"></asp:TextBox>
胡大本事 2024-12-16 12:56:48

您可以在后面提供代码,如下所示

textBox.Attributes.Add(“onfocus”, “clearText(this,’” + defaultText + “‘)”);

,另请参阅 了解更多信息。

You, can give in Code behind like follows

textBox.Attributes.Add(“onfocus”, “clearText(this,’” + defaultText + “‘)”);

And also refer to this to know more.

携君以终年 2024-12-16 12:56:48

您可以使用文本框的“占位符”属性。

示例

<asp:TextBox ID="TextBox1" runat="server" Width="233px" placeholder="Search"></asp:TextBox>

You can using "placeholder" properties for textbox.

Example

<asp:TextBox ID="TextBox1" runat="server" Width="233px" placeholder="Search"></asp:TextBox>
素食主义者 2024-12-16 12:56:48

您可以为此使用 HTML5 占位符属性。缺点是它仅受某些浏览器支持。幸运的是,您可以使用 JQuery Placeholder 来救援。该插件使占位符行为可用于不受支持的浏览器。

在这里查看 JQuery 占位符

You could use the HTML5 placeholder attribute for that. The downside is that it's only supported by some browsers. Fortunately you have JQuery Placeholder to the rescue. This plugin makes the placeholder behavior available for unsupported browsers.

Check it out here JQuery Placeholder

帅哥哥的热头脑 2024-12-16 12:56:48

使用javascript输入文本水印。
参考这个可能对你有帮助
http://naspinski.net/post/文本输入水印-使用-Javascript-%28IE-Compatible%29.aspx

text input watermarks using javascript.
refer this it might help u
http://naspinski.net/post/Text-Input-Watermarks-using-Javascript-%28IE-Compatible%29.aspx

儭儭莪哋寶赑 2024-12-16 12:56:48

只需在您的 asp 文本框中添加属性 placeholder="HintText"

just add property placeholder="HintText" in your asp textbox

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