美文网首页
Jquery修复IE浏览器placeholder不显示问题

Jquery修复IE浏览器placeholder不显示问题

作者: 邢泽川 | 来源:发表于2017-06-09 11:00 被阅读600次

放到一个JS文件里面,直接引入即可

//解决ie下 input 的placeholder不显示问题
var JPlaceHolder = {
    //检测
    _check: function() {
        return 'placeholder' in document.createElement('input');
    },
    //初始化
    init: function() {
        if(!this._check()) {
            this.fix();
        }
    },
    //修复
    fix: function() {
        jQuery(':input[placeholder]').each(function(index, element) {
            var self = $(this),
                txt = self.attr('placeholder');
            self.wrap($('<div></div>').css({
                display:'inline-block',
                position: 'relative',
                zoom: '1',
                border: 'none',
                background: 'none',
                padding: 'none',
                margin: 'none'
            }));
            var pos = self.position(),
                h = self.outerHeight(true),
                paddingleft = self.css('padding-left');
            var holder = $('<span></span>').text(txt).css({
                position: 'absolute',
                left: pos.left,
                top: pos.top,
                height: h,
                lineHeight: h +"px",
                paddingLeft: paddingleft,
                color: '#aaa'
            }).appendTo(self.parent());
            self.focusin(function(e) {
                holder.hide();
            }).focusout(function(e) {
                if(!self.val()) {
                    holder.show();
                }
            });
            holder.click(function(e) {
                holder.hide();
                self.focus();
            });
            console.log(h)
        });
    }
};
//执行
jQuery(function() {
    JPlaceHolder.init();
});

相关文章

网友评论

      本文标题:Jquery修复IE浏览器placeholder不显示问题

      本文链接:https://www.haomeiwen.com/subject/iaixqxtx.html