zoukankan      html  css  js  c++  java
  • HTML5的PLACEHOLDER属性

    由于placeholder是个新增属性,目前只有少数浏览器支持,如何检测浏览器是否支持它呢

    function hasPlaceholderSupport() {
      return 'placeholder' in document.createElement('input');
    }
    

      

    现在支持的浏览器有:Firefox4.0+、Chrome4.0+、Safari4.0+,Opera 11、IE9 RC2尚不支持。

    默认提示文字是灰色的,可以通过CSS来改变文字样式:

    /* all */
    ::-webkit-input-placeholder { color:#f00; }
    input:-moz-placeholder { color:#f00; }
     
    /* individual: webkit */
    #field2::-webkit-input-placeholder { color:#00f; }
    #field3::-webkit-input-placeholder { color:#090; background:lightgreen; text-transform:uppercase; }
    #field4::-webkit-input-placeholder { font-style:italic; text-decoration:overline; letter-spacing:3px; color:#999; }
     
    /* individual: mozilla */
    #field2:-moz-placeholder { color:#00f; }
    #field3:-moz-placeholder { color:#090; background:lightgreen; text-transform:uppercase; }
    #field4:-moz-placeholder { font-style:italic; text-decoration:overline; letter-spacing:3px; color:#999; }
    

    兼容其他不支持placeholder的浏览器:

    var PlaceHolder = {
        _support: (function() {
            return 'placeholder' in document.createElement('input');
        })(),
     
        //提示文字的样式,需要在页面中其他位置定义
        className: 'abc',
     
        init: function() {
            if (!PlaceHolder._support) {
                //未对textarea处理,需要的自己加上
                var inputs = document.getElementsByTagName('input');
                PlaceHolder.create(inputs);
            }
        },
     
        create: function(inputs) {
            var input;
            if (!inputs.length) {
                inputs = [inputs];
            }
            for (var i = 0, length = inputs.length; i <length; i++) {
                input = inputs[i];
                if (!PlaceHolder._support && input.attributes && input.attributes.placeholder) {
                    PlaceHolder._setValue(input);
                    input.addEventListener('focus', function(e) {
                        if (this.value === this.attributes.placeholder.nodeValue) {
                            this.value = '';
                            this.className = '';
                        }
                    }, false);
                    input.addEventListener('blur', function(e) {
                        if (this.value === '') {
                            PlaceHolder._setValue(this);
                        }
                    }, false);
                }
            }
        },
     
        _setValue: function(input) {
            input.value = input.attributes.placeholder.nodeValue;
            input.className = PlaceHolder.className;
        }
    };
     
    //页面初始化时对所有input做初始化
    //PlaceHolder.init();
    //或者单独设置某个元素
    //PlaceHolder.create(document.getElementById('t1'));
    

      

    欢迎到我的网站看看
  • 相关阅读:
    多网卡ip选择
    微软编程一小时--微软2014实习生招募编程模拟测试感想
    .NET和JAVA的比较- 体系结构
    CentOS下JAVA WEB 环境搭建
    MySQL 8.0.23 安装配置向导
    uniapp map层级太高,样式支持度不高 使用nvue解决
    flex 伸缩盒子
    setInterval在浏览器切换时加速的问题
    软件包查找下载https://pkgs.org/
    斐波那契数列
  • 原文地址:https://www.cnblogs.com/Caiyinsoft/p/2823197.html
Copyright © 2011-2022 走看看