IE6\7\8下placeholder效果,支持文本框和密码框

(function($) {
  var placeholderfriend = {
    focus: function(s) {
      s = $(s).hide().prev().show().focus();
      var idValue = s.attr("id");
      if (idValue) {
        s.attr("id", idValue.replace("placeholderfriend", ""));
      }
      var clsValue = s.attr("class");
      if (clsValue) {
        s.attr("class", clsValue.replace("placeholderfriend", ""));
      }
    }
  }

//判断是否支持placeholder
  function isPlaceholer() {
    var input = document.createElement(‘input‘);
    return "placeholder" in input;
  }
  //不支持的代码
  if (!isPlaceholer()) {
    $(function() {

var form = $(this);
      var elements = form.find("input[type=‘text‘][placeholder]");
      elements.each(function() {
        var s = $(this);
        var pValue = s.attr("placeholder");
          var sValue = s.val();
        if (pValue) {
          if (sValue == ‘‘) {
            s.val(pValue).css(‘color‘,‘#E0E0E0‘);
          }
        }
      });

elements.focus(function() {
        var s = $(this);
        var pValue = s.attr("placeholder");
        var sValue = s.val();
        if (sValue && pValue) {
          if (sValue == pValue) {
            s.val(‘‘).css(‘color‘,‘#E0E0E0‘);
          }
        }
      });

elements.blur(function() {
        var s = $(this);
        var pValue = s.attr("placeholder");
        var sValue = s.val();
        if (!sValue) {
          s.val(pValue);
        }
      });

var element_em = form.find("input[type=‘email‘][placeholder]");
      element_em.each(function() {
        var s = $(this);
        var pValue = s.attr("placeholder");
      var sValue = s.val();
        if (pValue) {
          if (sValue == ‘‘) {
            s.val(pValue).css(‘color‘,‘#E0E0E0‘);
          }
        }
      });

element_em.focus(function() {
        var s = $(this);
        var pValue = s.attr("placeholder");
    var sValue = s.val();
        if (sValue && pValue) {
          if (sValue == pValue) {
            s.val(‘‘).css(‘color‘,‘#E0E0E0‘);
          }
        }
      });

element_em.blur(function() {
        var s = $(this);
        var pValue = s.attr("placeholder");
    var sValue = s.val();
        if (!sValue) {
          s.val(pValue);
        }
      });

var elementsPass = form.find("input[type=‘password‘][placeholder]");
      elementsPass.each(function(i) {
        var s = $(this);
        var pValue = s.attr("placeholder");
        var sValue = s.val();
        s.val(sValue).css(‘color‘,‘#e0e0e0‘);
        if (pValue) {
          if (sValue == ‘‘) {
            var html = this.outerHTML || "";
            html = html.replace(/\s*type=([‘"])?password\1/gi, " type=text placeholderfriend").replace(/\s*(?:value|on[a-z]+|name)(=([‘"])?\S*\1)?/gi, " ").replace(/\s*placeholderfriend/, " placeholderfriend value=‘" + pValue + "‘ " + "onfocus=‘placeholderfriendfocus(this);‘ ");
            var idValue = s.attr("id");
            if (idValue) {
              s.attr("id", idValue + "placeholderfriend");

}
            var clsValue = s.attr("class");
            if (clsValue) {
              s.attr("class", clsValue + "placeholderfriend");
            }
            s.hide();
            s.after(html);
          }
        }
      });

elementsPass.blur(function() {
        var s = $(this);
        var sValue = s.val();
        if (sValue == ‘‘) {
          var idValue = s.attr("id");
          if (idValue) {
            s.attr("id", idValue + "placeholderfriend");
          }
          var clsValue = s.attr("class");
          if (clsValue) {
            s.attr("class", clsValue + "placeholderfriend");
          }
          s.hide().next().show();
        }
      });

});
  }
  window.placeholderfriendfocus = placeholderfriend.focus;
})(jQuery);

时间: 2024-10-15 00:54:44

IE6\7\8下placeholder效果,支持文本框和密码框的相关文章

IE下支持文本框和密码框placeholder效果的JQuery插件

基于jQuery实现的,主要用于IE下实现placeholder效果,可同时支持文本和密码输入框.placeholder是HTML5新增的一个属性,当input设置了该属性后,该值的内容将作为灰色提示显示在文本框中,当文本框获得焦点时,提示文字消失. 实现代码如下: (function($) {  /**   * 没有开花的树   * 2012/11/28 15:12   */ var placeholderfriend = {    focus: function(s) {      s =

WPF 之 文本框及密码框添加水印效果

1.文本框添加水印效果 文本框水印相对简单,不需要重写模板,仅仅需要一个 VisualBrush 和触发器验证一下Text是否为空即可. <TextBox Name="txtSerachDataName" Width="120" Height="23" Grid.Column="3" Grid.Row="1"> <TextBox.Resources> <VisualBrush

JTextField类(单行文本框)/JPasswordFiel(密码框)/JTextArea(多行文本框)常用方法

JTextField类常用方法(单行文本框) JTextField()          构造             构造一个默认的文本框 JTextField(String text) 构造 构造一个指定文本内容的文本框 setColumns(int colums)     普通   设置显示长度 JPasswordField类常用方法(密码框) JPasswordField()                  构造 构造默认的JPasswordField对象 JPasswordField

实现密码框默认文字效果实例代码

实现密码框默认文字效果实例代码:大家都知道很多文本框在默认情况下都有默认的提示文本,例如"请输入姓名"之类的语言,当点击文本框的时候,会清除提示语,比较人性化.但是在密码框中实现此效果可能就有点麻烦了,因为密码框不是以明文显示的,下面就介绍一下代码实例解决此问题.代码如下: <!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="

jQuery封装placeholder效果,让低版本浏览器支持该效果

页面中的输入框默认的提示文字一般使用placeholder属性就可以了,即: <input type="text" name="username" placeholder="请输入用户名" value="" id="username"/> 最多加点样式控制下默认文字的颜色 input::-webkit-input-placeholder{color:#AAAAAA;} 但是在低版本的浏览器却不支

opacity在IE6~8下无效果,解决的办法

opacity在IE6~8下无效果,解决的办法 问题出现时rgba()在ie6下不出效果,最后查到是opacity的问题. opacity是css3时出现的,目前主流浏览器都支持.but老IE是个麻烦的问题. 查找网络后,发现解决办法大多都没用了. filter:alpha(opacity=50);     X 总结网上经验: 1 <!doctype html> 2 <html> 3 <head> 4 <meta charset='utf-8'> 5 <

IE6下的效果

1. IE6有宽度border实现透明 如果想使得边框颜色透明,在其余浏览器下比较简单,直接使用:border-color:transparent;但在IE6下这个办法不行,可以通过下面的方式实现: _border-color:tomato; _filter:chroma(color=tomato); 或者: _border-color:#FFFFFF; _filter:chroma(color=#FFFFFF); 或者: _border-color:#FFFFFF; _filter:progi

placeholder插件兼容ie6.7.8,(支持密码框)

copy以下的代码,放在单独的js里面,引入有placeholder的页面,就ok啦 (function($) { var placeholderfriend = { focus: function(s) { s = $(s).hide().prev().show().focus(); var idValue = s.attr("id"); if (idValue) { s.attr("id", idValue.replace("placeholderfr

【jquery】基于 jquery 实现 ie 浏览器兼容 placeholder 效果

placeholder 是 html5 新增加的属性,主要提供一种提示(hint),用于描述输入域所期待的值.该提示会在输入字段为空时显示,并会在字段获得焦点时消失.placeholder 属性适用于以下类型的 input 标签:text, search, url, telephone, email 以及 password. 我们先看下在谷歌浏览器中的效果,如图所示: 获得焦点时: 输入字段: 因为是 html5 属性,自然低版本的浏览器比如 ie6-8 不兼容.下面就介绍下如何在低版本浏览器中