首页 > 其他 > 详细

placeholder字体样式及兼容

时间:2017-11-29 15:46:24      阅读:250      评论:0      收藏:0      [点我收藏+]
样式修改css
::-webkit-input-placeholder { /* WebKit browsers */ color: #fff!important;}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #fff!important;}
::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #fff!important;}
:-ms-input-placeholder { /* Internet Explorer 10+ */ color: #fff!important;}


兼容方法
//    判断浏览器是否支持placeholder
var isPlaceholderSupport = (function(){
return ‘placeholder‘ in document.createElement(‘input‘);
})();
if(!isPlaceholderSupport){
$(‘[placeholder]‘).focus(function() {
var input = $(this);
if (input.val() == input.attr(‘placeholder‘)) {
input.val(‘‘);
input.removeClass(‘placeholder‘);
}
}).blur(function() {
var input = $(this);
if (input.val() == ‘‘ || input.val() == input.attr(‘placeholder‘)) {
input.addClass(‘placeholder‘);
input.val(input.attr(‘placeholder‘));
}
}).blur().parents(‘form‘).submit(function() {
$(this).find(‘[placeholder]‘).each(function() {
var input = $(this);
if (input.val() == input.attr(‘placeholder‘)) {
input.val(‘‘);
}
})
});
}

placeholder字体样式及兼容

原文:http://www.cnblogs.com/zyxing/p/7920505.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!