zoukankan      html  css  js  c++  java
  • placeholder兼容ie9

    //placeholder兼容ie9
        function isPlaceholder(){
                var input = document.createElement('input');
                return 'placeholder' in input;
            }
            if (!isPlaceholder()) {//不支持placeholder 用jquery来完成
                $(document).ready(function() {
                    if(!isPlaceholder()){
                        $("input").not("input[type='password']").each(//把input绑定事件 排除password框
                                function(){
                                    if($(this).val()=="" && $(this).attr("placeholder")!=""){
                                        $(this).val($(this).attr("placeholder"));
                                        $(this).focus(function(){
                                            if($(this).val()==$(this).attr("placeholder")) $(this).val("");
                                        });
                                        $(this).blur(function(){
                                            if($(this).val()=="") $(this).val($(this).attr("placeholder"));
                                        });
                                    }
                                });
                        //对password框的特殊处理1.创建一个text框 2获取焦点和失去焦点的时候切换
                        $("input[type='password']").each(
                                function() {
                                    var pwdField    = $(this);
                                    var pwdVal      = pwdField.attr('placeholder');
                                    pwdField.after('<input  class="login-input" type="text" value='+pwdVal+' autocomplete="off" />');
                                    var pwdPlaceholder = $(this).siblings('.login-input');
                                    pwdPlaceholder.show();
                                    pwdField.hide();

                                    pwdPlaceholder.focus(function(){
                                        pwdPlaceholder.hide();
                                        pwdField.show();
                                        pwdField.focus();
                                    });

                                    pwdField.blur(function(){
                                        if(pwdField.val() == '') {
                                            pwdPlaceholder.show();
                                            pwdField.hide();
                                        }
                                    });
                                })
                    }
                });
            }

  • 相关阅读:
    Python3爬虫系列:理论+实验+爬取妹子图实战
    虚机安装后无网卡、网卡驱动
    Linux运维工程师面试题整理
    睡眠或者重启windows,无法ssh连接或者pingVMware的虚机
    W10: Warning: Changing a readonly file使用vi/vim报错问题解决
    keyboard-interactive authentication with the ssh2 server failed 的SecureCRT报错解决
    公网访问内网实现(内网穿透)
    Linux内网时钟同步问题(ntp和chrony)
    xshell的快捷复制粘贴设置
    Linux中shell去除空行的几种方法
  • 原文地址:https://www.cnblogs.com/wugai/p/10904217.html
Copyright © 2011-2022 走看看