c# - 如何设置文本框中的文本以在文本框为空时显示提示?
我使用的是
而不是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
使用 ASP.NET WaterMark TextBox
它位于 Ajax 工具包
Use a ASP.NET WaterMark TextBox
It is in Ajax Toolkit
您可以在后面提供代码,如下所示
,另请参阅 此了解更多信息。
You, can give in Code behind like follows
And also refer to this to know more.
您可以使用文本框的“占位符”属性。
示例
You can using "placeholder" properties for textbox.
Example
您可以为此使用 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
使用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
只需在您的 asp 文本框中添加属性
placeholder="HintText"
just add property
placeholder="HintText"
in your asp textbox