码迷,mamicode.com
首页 > 其他好文 > 详细

placeholder字体样式及兼容

时间:2017-11-29 16:21:19      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:tee   each   att   pre   focus   支持   intern   row   dcl   

样式修改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字体样式及兼容

标签:tee   each   att   pre   focus   支持   intern   row   dcl   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!