<input id="username" name="username" placeholder="请输入用户名" type="text">
<textarea>
多行文本框和 type
属性值为 text, password, search, tel, url 或者 email 等的 <input>
。<p>::placeholder
伪元素选择器,不过当前还没有浏览器支持,因此只能根据不同浏览器的不同实现方式分别定义:::-webkit-input-placeholder { /* Chrome/Safari/Opera */ color: green;}::-moz-placeholder { /* Firefox 19+ */ color: green;}:-ms-input-placeholder { /* IE 10+ 注意这里只有一个冒号 */ color: green;}
::-webkit-input-placeholder,::-moz-placeholder { color: green;}
:-moz-placeholder { /* Firefox 4 - 18 */ color: green;}
:-moz-placeholder
被废弃了,切换为两个冒号的伪元素定义方式。与此同时,它还添加了一个默认的 opacity: 0.54
不透明度样式,如果需要,可以覆盖掉该样式,否则文字是半透明的:::-moz-placeholder { color: green; opacity: 1;}
:first-child
伪类,选择第一个子元素:p:first-child { font-size: 16px;}
p.first-child { font-size: 16px;}
<p>
元素上的。<p>而伪元素可以理解为添加了一个虚拟的元素。比如 p:before
伪元素,可以像下面这个伪代码这样理解:<before>p:before</before><p>paragraph</p>
<p>
元素和 p:before
可以理解为是两个不同的元素。如果被绕晕了,没关系,毕竟这不是本文的重点,更多伪元素与伪类的信息可以参考 Pseudo-classes - CSS | MDN 和 Pseudo-elements - CSS | MDN:-ms-input-placeholder
选择器来定义 placeholder 的样式,实际上样式是作用于文本输入框的,如果另外还有针对文本输入框的选择器特殊性更高的样式规则,将会覆盖掉该样式,参考下面代码:input:-ms-input-placeholder { /* 0, 0, 1, 1 */ color: green;}#username { /* 0, 1, 0, 0 */ color: blue;}
!important
规则可以用。其它使用两个冒号的伪元素选择器的浏览器不会出现这个问题,例如:input::-webkit-input-placeholder { /* 0, 0, 0, 2 */ color: green;}#username { /* 0, 1, 0, 0 */ color: blue;}
:focus
伪类选择器来将 placeholder 的文本颜色设置为透明::focus::-webkit-input-placeholder { color: transparent;}
placeholder
属性的值就行了:$('input').attr('placeholder', 'Please enter your name');
window.getComputedStyle()
方法来得到其样式属性,该方法的第二个参数是一个伪元素:window.getComputedStyle(document.getElementById('username'), '::-moz-placeholder').getPropertyValue('color'); // "rgb(0, 255, 0)"
.style-1::-moz-placeholder { color: green;}.style-2::-moz-placeholder { color: red;}
class
属性来实现修改样式的目的:$('input').addClass('style-2').removeClass('style-1');
<input>
元素的 placeholder
属性,可以引入 Modernizr 库来判断:if (!Modernizr.input.placeholder) { // 做点什么事}
<input>
元素对象,并判断该元素对象是否具有 placeholder
属性:'placeholder' in document.createElement('input')
<textarea>
元素也是一样:'placeholder' in document.createElement('textarea')
({}).toString.call(window.operamini) === '[object OperaMini]'
if (!('placeholder' in document.createElement('input')) || ({}).toString.call(window.operamini) === '[object OperaMini]') { // 做点什么事}
value
值设置为 placeholder
的值来模拟显示 placeholder 的状态。再添加上事件处理程序,当文本输入框获取焦点时如果 value
的值为 placeholder 则清空文本输入框;当文本输入框失去焦点时如果 value
值为空则将 placeholder 的内容赋给它,同时当 placeholder 显示的时候应该给文本输入框添加一个 class="placeholder"
用来设置样式以区别是显示的 placeholder 和还是显示的普通 value:// 做点什么事$('input[placeholder]').on('focus', function() { var $this = $(this); if (this.value === $this.attr('placeholder') && $this.hasClass('placeholder')) { this.value = ''; $this.removeClass('placeholder'); }}).on('blur', function() { var $this = $(this); if (this.value === '') { $this.addClass('placeholder'); this.value = $this.attr('placeholder'); }});
value
值会显示为圆点之类的字符,呈现几个莫名其妙的圆点来作为 placeholder 提示恐怕不妥,因此需要特殊对待一下,将密码输入框拷贝一份出来然后修改其 type
属性为 'text' 来替代显示 placeholder,并把原本的密码输入框隐藏:$('input[placeholder]').on('blur', function() { var $this = $(this); var $replacement; if (this.value === '') { // 失去焦点时值为空则显示 placeholder if (this.type === 'password') { $replacement = $this.clone().attr('type', 'text'); $replacement.data('placeholder-password', $this); // 替代显示的文本输入框获取焦点时将它删掉,并且重新显示原来的密码输入框 $replacement.on('focus', function() { $(this).data('placeholder-password').show().focus(); $(this).remove(); }); $this.after($replacement).hide(); $this = $replacement; } $this.addClass('placeholder'); $this[0].value = $this.attr('placeholder'); }});
try { $replacement = $this.clone().prop('type', 'text'); // 使用 .prop() 方法在 IE 8 下会报错} catch(e) { $replacement = $('<input>').attr({ 'type': 'text', 'class': this.className // 还可以赋予 id, name 等属性 });}
value
值设为空,提交之后再恢复成显示 placeholder 的状态:$(document).on('submit', 'form', function() { var $input = $('.placeholder', this); $input.each(function() { this.value = ''; }); setTimeout(function() { $input.each(function() { this.value = $(this).attr('placeholder'); }); }, 10);});
beforeunload
事件来处理:$(window).on('beforeunload', function() { $('.placeholder').each(function() { this.value = ''; });});
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { color: #999;}input::-moz-placeholder, textarea::-moz-placeholder { color: #999; opacity: 1;}input:-ms-input-placeholder, textarea:-ms-input-placeholder { color: #999;}.placeholder { color: #999;}input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder { color: transparent;}input:focus::-moz-placeholder, textarea:focus::-moz-placeholder { color: transparent;}
以上是HTML5 Placeholder属性的详情介绍的详细内容。更多信息请关注PHP中文网其他相关文章!