html文本框提示文字设置(input文本框添加提示文字的方法)
html文本框中input文本框中在没有值的情况下,添加提示的文字,当要输入文字的时候,提示的文字消失。关于html文本框input 输入框的提示文字,有两种方法可以实现,一种为 input 元素的 placeholder 属性,一种为 js 方法。
1.input文本框的 placeholder 属性
placeholder:属性提供可描述输入字段预期值的提示信息
语法:
<input placeholder="提示的文字">
例:input 添加提示的文字
代码:
<input type="text" placeholder="这里是提示的文字">
运行结果:
当input输入框,输出文字时,提示的文字信息会消失
2.js方法添加input文本框提示文字
示例代码:
<input type="text" onfocus="javascript:if(this.value=='请输入内容')this.value='';">
运行结果:
注:
1)js 方法添加的提示文字不同于使用 placeholder 属性添加的效果
2)placeholder 属性添加的提示文字,只有输入内容时文字才会消失
3)js 方式添加的提示文字,当光标定位到 input 输入框中时,提示文字就会消失
除注明外的文章,均为来源:老汤博客,转载请保留本文地址!
原文地址:https://tangjiusheng.cn/html/270.html
原文地址:https://tangjiusheng.cn/html/270.html