input中placeholder属性

Posted danxibao_chen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input中placeholder属性相关的知识,希望对你有一定的参考价值。

  • 注意:IE 9及更早的版本不支持该属性
//列表框输入前默认灰色字体,输内容时字体加黑
<input type="text" name="" id="user_name" placeholder="用户名/学号/手机号">



可以使用js中的焦点事件完成该功能

  • 1.onfocus获得焦点
  • 2.onblur失去焦点
<script>
    var text = document.querySelector(\'input\');//获取元素
    text.onfocus = function () {
        if(this.value === \'用户名/学号/手机号\'){
            this.value = \'\';
        }
        this.style.color = \'#333\';
    }

    text.onblur = function () {
        if(this.value === \'\'){
            this.value = \'用户名/学号/手机号\';
        }
        this.style.color = \'#999\';
    }
</script>

以上是关于input中placeholder属性的主要内容,如果未能解决你的问题,请参考以下文章

HTML5中input背景提示文字(placeholder)的CSS美化

让 IE 8 及以下浏览器支持 表单 input [placeholder] 属性

在IE8及以下的浏览器中,不支持placeholder属性的解决办法

jquery.placeholder.js解决IE8兼容h5中input属性placeholder属性

input中placeholder属性

input 的 placeholder属性在IE8下的兼容处理