jQuery封裝placeholder效果,讓低版本瀏覽器支持該效果

来源:http://www.cnblogs.com/moqiutao/archive/2017/07/07/7133755.html
-Advertisement-
Play Games

頁面中的輸入框預設的提示文字一般使用placeholder屬性就可以了,即: 最多加點樣式控制下預設文字的顏色 但是在低版本的瀏覽器卻不支持這個placeholder屬性,那麼真的要在低版本瀏覽器也要實現跟placeholder一樣的效果,就需要寫個插件來相容下,下麵就細講一下怎樣用jquery來實 ...


頁面中的輸入框預設的提示文字一般使用placeholder屬性就可以了,即:

<input type="text" name="username" placeholder="請輸入用戶名" value="" id="username"/>

最多加點樣式控制下預設文字的顏色

input::-webkit-input-placeholder{color:#AAAAAA;}

但是在低版本的瀏覽器卻不支持這個placeholder屬性,那麼真的要在低版本瀏覽器也要實現跟placeholder一樣的效果,就需要寫個插件來相容下,下麵就細講一下怎樣用jquery來實現這個模擬效果。

實現這個模擬效果,頁面的一般調用方式:

$('input').placeholder();

首先,先寫jquery插件的一般結構:

;(function($){
    $.fn.placeholder = function(){
        //實現placeholder的代碼
    }
})(jQuery)

下麵我們就要判斷瀏覽器是否支持placeholder屬性

;(function($){
    $.fn.placeholder = function(){

        this.each(function(){
            var _this = this;
            var supportPlaceholder = 'placeholder' in document.createElement('input');
            if(!supportPlaceholder){
                //不支持placeholder屬性的操作

            }
        });
    }
})(jQuery)

我們要支持鏈式操作,如下:

;(function($){
    $.fn.placeholder = function(){

         return this.each(function(){
            var _this = this;
            var supportPlaceholder = 'placeholder' in document.createElement('input');
            if(!supportPlaceholder){
                //不支持placeholder屬性的操作

            }
        });
    }
})(jQuery)

預設配置項:

options = $.extend({
    placeholderColor:'#aaaaaa',
    isSpan:false, //是否使用插入span標簽模擬placeholder的方式,預設是不需要
    onInput:true //實時監聽輸入框
},options);

如果不需要通過span來模擬placeholder效果,那麼就需要通過輸入框的value值來判斷,如下代碼:

if(!options.isSpan){
    $(_this).focus(function () {
        var pattern = new RegExp("^" + defaultValue + "$|^$");
        pattern.test($(_this).val()) && $(_this).val('').css('color', defaultColor);
    }).blur(function () {
        if($(_this).val() == defaultValue) {
            $(_this).css('color', defaultColor);
        }
        else if($(_this).val().length == 0) {
            $(_this).val(defaultValue).css('color', options.placeholderColor)
        }
    }).trigger('blur');
}

如果需要同span標簽來模擬placeholder效果,代碼如下:

var $simulationSpan = $('<span class="wrap-placeholder">'+defaultValue+'</span>');
$simulationSpan.css({
    'position':'absolute',
    'display':'inline-block',
    'overflow':'hidden',
    'width':$(_this).outerWidth(),
    'height':$(_this).outerHeight(),
    'color':options.placeholderColor,
    'margin-left':$(_this).css('margin-left'),
    'margin-top':$(_this).css('margin-top'),
    'padding-left':parseInt($(_this).css('padding-left')) + 2 + 'px',
    'padding-top':_this.nodeName.toLowerCase() == 'textarea' ? parseInt($(_this).css('padding-top')) + 2 : 0,
    'line-height':_this.nodeName.toLowerCase() == 'textarea' ? $(_this).css('line-weight') : $(_this).outerHeight() + 'px',
    'font-size':$(_this).css('font-size'),
    'font-family':$(_this).css('font-family'),
    'font-weight':$(_this).css('font-weight')
});

//通過before把當前$simulationSpan添加到$(_this)前面,並讓$(_this)聚焦
$(_this).before($simulationSpan.click(function () {
    $(_this).trigger('focus');
}));

//當前輸入框聚焦文本內容不為空時,模擬span隱藏
$(_this).val().length != 0 && $simulationSpan.hide();

if (options.onInput) {
    //綁定oninput/onpropertychange事件
    var inputChangeEvent = typeof(_this.oninput) == 'object' ? 'input' : 'propertychange';
    $(_this).bind(inputChangeEvent, function () {
        $simulationSpan[0].style.display = $(_this).val().length != 0 ? 'none' : 'inline-block';
    });
}else {
    $(_this).focus(function () {
        $simulationSpan.hide();
    }).blur(function () {
        /^$/.test($(_this).val()) && $simulationSpan.show();
    });
};

整體代碼:

;(function($){
    $.fn.placeholder = function(options){
        options = $.extend({
            placeholderColor:'#aaaaaa',
            isSpan:false, //是否使用插入span標簽模擬placeholder的方式,預設是不需要
            onInput:true //實時監聽輸入框
        },options);

         return this.each(function(){
            var _this = this;
            var supportPlaceholder = 'placeholder' in document.createElement('input');
            if(!supportPlaceholder){
                //不支持placeholder屬性的操作
                var defaultValue = $(_this).attr('placeholder');
                var defaultColor = $(_this).css('color');
                if(!options.isSpan){
                    $(_this).focus(function () {
                        var pattern = new RegExp("^" + defaultValue + "$|^$");
                        pattern.test($(_this).val()) && $(_this).val('').css('color', defaultColor);
                    }).blur(function () {
                        if($(_this).val() == defaultValue) {
                            $(_this).css('color', defaultColor);
                        }
                        else if($(_this).val().length == 0) {
                            $(_this).val(defaultValue).css('color', options.placeholderColor)
                        }
                    }).trigger('blur');
                }else{
                    var $simulationSpan = $('<span class="wrap-placeholder">'+defaultValue+'</span>');
                    $simulationSpan.css({
                        'position':'absolute',
                        'display':'inline-block',
                        'overflow':'hidden',
                        'width':$(_this).outerWidth(),
                        'height':$(_this).outerHeight(),
                        'color':options.placeholderColor,
                        'margin-left':$(_this).css('margin-left'),
                        'margin-top':$(_this).css('margin-top'),
                        'padding-left':parseInt($(_this).css('padding-left')) + 2 + 'px',
                        'padding-top':_this.nodeName.toLowerCase() == 'textarea' ? parseInt($(_this).css('padding-top')) + 2 : 0,
                        'line-height':_this.nodeName.toLowerCase() == 'textarea' ? $(_this).css('line-weight') : $(_this).outerHeight() + 'px',
                        'font-size':$(_this).css('font-size'),
                        'font-family':$(_this).css('font-family'),
                        'font-weight':$(_this).css('font-weight')
                    });

                    //通過before把當前$simulationSpan添加到$(_this)前面,並讓$(_this)聚焦
                    $(_this).before($simulationSpan.click(function () {
                        $(_this).trigger('focus');
                    }));

                    //當前輸入框聚焦文本內容不為空時,模擬span隱藏
                    $(_this).val().length != 0 && $simulationSpan.hide();

                    if (options.onInput) {
                        //綁定oninput/onpropertychange事件
                        var inputChangeEvent = typeof(_this.oninput) == 'object' ? 'input' : 'propertychange';
                        $(_this).bind(inputChangeEvent, function () {
                            $simulationSpan[0].style.display = $(_this).val().length != 0 ? 'none' : 'inline-block';
                        });
                    }else {
                        $(_this).focus(function () {
                            $simulationSpan.hide();
                        }).blur(function () {
                            /^$/.test($(_this).val()) && $simulationSpan.show();
                        });
                    };
                }
            }
        });
    }
})(jQuery);

調用方式,需要通過span標簽來模擬的話:

$("#username").placeholder({
    isSpan:true
});

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • SSH:[email protected]:unbelievableme/object-pool.git HTTPS:https://github.com/unbelievableme/object-pool.git 緩衝池 設計要點:包含三個隊列:空緩衝隊列(emq),裝滿輸入數據的輸入的隊列(inq) ...
  • 1.什麼是業務代碼? 直接用於實現用戶需求的代碼就是業務代碼,比如用戶需要查詢某個數據,那麼直接查詢資料庫,返回結果的代碼,就是業務代碼。 2.什麼是非業務代碼? 輔助業務代碼,一般可以脫離業務而存在的代碼,比如用戶查詢某個數據,接收用戶輸入可能出現中文亂碼,這時解決中文亂碼的代碼並不直接包含在用戶 ...
  • 1.什麼是高內聚? 內聚針對的是模塊內部關係,指的是模塊各構成要素間的聯繫,高內聚說明各構成要素間聯繫緊密。 2.高內聚的優點 各構成要素間聯繫緊密,說明各構成要素是實現模塊功能充分的存在,沒有某一個要素是實現功能不需要的,各要素都被充分地利用了起來,不僅使代碼簡潔,而且便於維護與復用。試想,假如某 ...
  • Hibernate工程項目創建基本步驟:導包(Hibernate依賴包、SQL驅動包)、編寫實體類、編寫ORM映射配置文件、編寫核心配置文件、編寫測試驅動。 項目工程代碼已經上傳到GitHub:https://github.com/wanyouxian/Hibernate 工程名:Hibernate ...
  • 今天遇到了一個連續賦值的經典案例,網友們給出的答案也是五花八門,看起來有些繁瑣,我也來說說自己的看法。 下麵就是這個經典案例: 我們先來看一下普通連續賦值,即:變數賦值的類型是數據類型值 一般來說,等號賦值的方向是從右至左,那麼上面的代碼等同於下麵這段代碼,那麼我們就用下麵這段代碼來解釋上面的代碼: ...
  • 1. 概念Ajax asynchronous JavaScript and XML , 非同步js和xml. 這種解釋已經過時了, 現在ajax就是, 允許瀏覽器和伺服器通信, 而無需刷新當前頁面的技術. 它本來是微軟的技術, 是Google 在 google earth、google suggest... ...
  • Echarts折線圖如何補全斷點以及如何隱藏斷點的title 做報表的時候,尤其是做圖表的時候時常會碰到某一記錄的值中缺少某個時間段(比如月份或季度)的值,導致圖表顯示殘缺不全,for example: 如果照實顯示的話確實不太美觀(除非貴公司確實需要特別準確的數據除外~),當然我們的客戶是做信托的 ...
  • 第五章 引用類型(四) 對於我們開發人員來說,JavaScript有種引用類型一定很陌生!那就是基本包裝類型:Boolean、Number和String。這也不是我們的錯,主要這些我們平時根本都用不到。這些都是JavaScript內部自動調用。這麼說,你可能有點懵。下麵,我來舉個例子。 對於上面的代 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...