欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JS樣式獲取的封裝方法實(shí)例詳解

 更新時間:2022年09月15日 09:58:26   作者:困困子  
這篇文章主要介紹了JS樣式獲取的封裝方法,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下

樣式獲取

style屬性 只能獲取標(biāo)簽內(nèi)容style屬性里面存在的一些樣式

如果你需要獲取對應(yīng)的全局所有地方設(shè)置樣式 我們就需要采用一些方法

getComputedStyle 方法屬于window的方法

Window.getComputedStyle()方法返回一個對象,該對象在應(yīng)用活動樣式表并解析這些值可能包含的任何基本計算后報告元素的所有 CSS 屬性的值。

window.getComputedStyle(元素對象,null) //返回給你的是一個樣式對象

ie兼容

element.currentStyle //返回給你一個樣式對象

兼容封裝

//方法的封裝
function getStyle(element,attr){
    var style =  window.getComputedStyle?window.getComputedStyle(element):element.currentStyle
    return style[attr]
}
//調(diào)用
console.log(getStyle(box,'height'));

補(bǔ)充:下面看下js封裝常用的方法

constbaseURL=“http://xxxxx”

日期格式化

export function parseTime(time, pattern) {
    if (arguments.length === 0 || !time) {
        return null
    }
    const format = pattern || '{y}-{m}-vvxyksv9kd {h}:{i}:{s}'
    let date
    if (typeof time === 'object') {
        date = time
    } else {
        if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {
            time = parseInt(time)
        } else if (typeof time === 'string') {
            time = time.replace(new RegExp(/-/gm), '/');
        }
        if ((typeof time === 'number') && (time.toString().length === 10)) {
            time = time * 1000
        }
        date = new Date(time)
    }
    const formatObj = {
        y: date.getFullYear(),
        m: date.getMonth() + 1,
        d: date.getDate(),
        h: date.getHours(),
        i: date.getMinutes(),
        s: date.getSeconds(),
        a: date.getDay()
    }
    const time_str = format.replace(/{(y|m|d|h|i|s|a)+}/g, (result, key) => {
        let value = formatObj[key]
        // Note: getDay() returns 0 on Sunday
        if (key === 'a') {
            return ['日', '一', '二', '三', '四', '五', '六'][value]
        }
        if (result.length > 0 && value < 10) {
            value = '0' + value
        }
        return value || 0
    })
    return time_str
}

表單重置

export function resetForm(refName) {
    if (this.$refs[refName]) {
        this.$refs[refName].resetFields();
    }
}

添加日期范圍

export function addDateRange(params, dateRange) {
    var search = params;
    search.beginTime = "";
    search.endTime = "";
    if (null != dateRange && '' != dateRange) {
        search.beginTime = this.dateRange[0];
        search.endTime = this.dateRange[1];
    }
    return search;
}

回顯數(shù)據(jù)字典

export function selectDictLabel(datas, value) {
    var actions = [];
    Object.keys(datas).map((key) => {
        if (datas[key].dictValue == ('' + value)) {
            actions.push(datas[key].dictLabel);
            return false;
        }
    })
    return actions.join('');
}

通用下載方法

export function download(fileName) {
    window.location.href = baseURL + "/common/download?fileName=" + encodeURI(fileName) + "&delete=" + true;
}

字符串格式化(%s)

export function sprintf(str) {
    var args = arguments, flag = true, i = 1;
    str = str.replace(/%s/g, function () {
        var arg = args[i++];
        if (typeof arg === 'undefined') {
            flag = false;
            return '';
        }
        return arg;
    });
    return flag ? str : '';
}

轉(zhuǎn)換字符串,undefined,null等轉(zhuǎn)化為""

export function praseStrEmpty(str) {
    if (!str || str == "undefined" || str == "null") {
        return "";
    }
    return str;
}

構(gòu)造樹型結(jié)構(gòu)數(shù)據(jù)

/**
 * 構(gòu)造樹型結(jié)構(gòu)數(shù)據(jù)
 * @param {*} data 數(shù)據(jù)源
 * @param {*} id id字段 默認(rèn) 'id'
 * @param {*} parentId 父節(jié)點(diǎn)字段 默認(rèn) 'parentId'
 * @param {*} children 孩子節(jié)點(diǎn)字段 默認(rèn) 'children'
 * @param {*} rootId 根Id 默認(rèn) 0
 */
export function handleTree(data, id, parentId, children, rootId) {
    if (!data || data.length === 0) {
        return []
    }
    id = id || 'id'
    parentId = parentId || 'parentId'
    children = children || 'children'
    rootId = rootId || 0
    //對源數(shù)據(jù)深度克隆
    const cloneData = JSON.parse(JSON.stringify(data))
    //循環(huán)所有項(xiàng)
    const treeData = cloneData.filter(father => {
        let branchArr = cloneData.filter(child => {
            //返回每一項(xiàng)的子級數(shù)組
            return father[id] === child[parentId]
        });
        branchArr.length > 0 ? father.children = branchArr : '';
        //返回第一層
        return father[parentId] === rootId;
    });
    return treeData != '' ? treeData : data;
}

到此這篇關(guān)于JS樣式獲取的封裝方法的文章就介紹到這了,更多相關(guān)JS樣式獲取封裝內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • List all the Databases on a SQL Server

    List all the Databases on a SQL Server

    List all the Databases on a SQL Server...
    2007-06-06
  • 使用p5.js臨摹動態(tài)圖片

    使用p5.js臨摹動態(tài)圖片

    這篇文章主要為大家詳細(xì)介紹了使用p5.js臨摹動態(tài)圖片,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2019-11-11
  • javascript回調(diào)函數(shù)的概念理解與用法分析

    javascript回調(diào)函數(shù)的概念理解與用法分析

    這篇文章主要介紹了javascript回調(diào)函數(shù)的概念理解與用法,結(jié)合具體實(shí)例形式分析了javascript回調(diào)函數(shù)的功能、原理、使用方法與相關(guān)注意事項(xiàng),需要的朋友可以參考下
    2017-05-05
  • JavaScript實(shí)現(xiàn)簡單的tab選項(xiàng)卡切換

    JavaScript實(shí)現(xiàn)簡單的tab選項(xiàng)卡切換

    這篇文章主要介紹了JavaScript實(shí)現(xiàn)簡單的tab選項(xiàng)卡切換的相關(guān)資料,需要的朋友可以參考下
    2016-01-01
  • 詳解JS幾種變量交換方式以及性能分析對比

    詳解JS幾種變量交換方式以及性能分析對比

    本篇文章主要介紹了JS幾種變量交換方式以及性能分析對比,具有一定的參考價值,感興趣的小伙伴們可以參考一下。
    2016-11-11
  • 微信小程序?qū)崿F(xiàn)比較功能的方法匯總(五種方法)

    微信小程序?qū)崿F(xiàn)比較功能的方法匯總(五種方法)

    這篇文章主要介紹了微信小程序?qū)崿F(xiàn)比較功能的方法,本文給大家列舉出五種方式,每種方法通過實(shí)例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-03-03
  • 全面了解javascript中的錯誤處理機(jī)制

    全面了解javascript中的錯誤處理機(jī)制

    下面小編就為大家?guī)硪黄媪私鈐avascript中的錯誤處理機(jī)制。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2016-07-07
  • 關(guān)于javascript中this關(guān)鍵字(翻譯+自我理解)

    關(guān)于javascript中this關(guān)鍵字(翻譯+自我理解)

    在傳統(tǒng)面向?qū)ο笳Z言中,this關(guān)鍵字是個很乖的小孩,從不亂跑,該是誰的就是誰的??墒窃贘avaScript中,我們發(fā)現(xiàn)它不那么乖,有時甚至把我們搞的暈頭轉(zhuǎn)向的。所以有必要對它稍微做個總結(jié)。
    2010-10-10
  • JavaScript中find()和?filter()方法的區(qū)別小結(jié)

    JavaScript中find()和?filter()方法的區(qū)別小結(jié)

    js中find和filter方法大家在工作中會經(jīng)常遇到,那么他們有什么區(qū)別呢?這篇文章主要給大家介紹了關(guān)于JavaScript中find()和?filter()方法區(qū)別的相關(guān)資料,需要的朋友可以參考下
    2021-12-12
  • javascript:void(0)使用探討

    javascript:void(0)使用探討

    如果想做一個鏈接點(diǎn)擊后不做任何事情,或者響應(yīng)點(diǎn)擊而完成其他事情一般都是設(shè)置屬性href = "#"其實(shí)還有比這更好的方法,下面為大家整理了幾種比較常見的解決方法,感興趣的朋友可以參考下
    2013-08-08

最新評論