關(guān)于javascript獲取內(nèi)聯(lián)樣式與嵌入式樣式

通過(guò)style屬性設(shè)置背景圖案

<!--html-->
<div id="change">
change color
</div>
/*css*/
#change {
            border: 1px solid black;
            width: 200px;
            height: 200px;
            text-align: center;
            line-height: 200px;
        }
//js
change.style.backgroundColor="purple";
圖示

在側(cè)邊欄設(shè)置一個(gè)顏色選擇器缘厢,將change的背景顏色設(shè)置為選擇的顏色根蟹,此時(shí)顏色選擇器的顏色是使用內(nèi)聯(lián)樣式的方式添加的璧榄。

演示.gif
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>css</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .wrap {
            width: 220px;
            height: 200px;
            position: absolute;
            top: 300px;
            left: -172px;
        }

        .open-close {
            height: 45px;
            width: 48px;
            background: url("open-close.png") no-repeat;
            background-size: contain;
            border: 1px solid grey;
            border-left: none;
            position: absolute;
            top: 0;
            right: 0;
            z-index: 2;
        }

        .changer {
            height: 150px;
            width: 170px;
            position: absolute;
            top: 0;
            left: 0;
            border: 1px solid grey;
            text-align: center;
            padding-top: 8px;
        }

        .list > li {
            display: block;
            width: 36px;
            height: 36px;
            float: left;
            margin-left: 9%;
            margin-top: 10%;
        }

        #change {
            border: 1px solid black;
            width: 200px;
            height: 200px;
            text-align: center;
            line-height: 200px;
        }
    </style>
</head>
<body>
<div class="wrap" id="wrap">
    <!--html-->
    <div class="open-close" id="open"></div>
    <div class="changer">
        <span>顏色選擇器</span>
        <ul class="list">
            <li class="color-orange" style="background-color: orange"></li>
            <li class="color-red" style="background-color: red"></li>
            <li class="color-blue" style="background-color: blue"></li>
            <li class="color-black" style="background-color: black"></li>
            <li class="color-green" style="background-color: green"></li>
            <li class="color-pink" style="background-color: pink"></li>
        </ul>
    </div>
</div>
<div id="change">
    change color
</div>
<script>
    var open = document.getElementById("open");
    var wrap = document.getElementById("wrap");
    var list = document.getElementById("list");
    var change = document.getElementById("change");
    var color_change = document.getElementsByTagName("li");
    change.style.backgroundColor = "purple";
    open.onmouseover = function () {
        wrap.style.left = 0 + "px";

    };
    open.onclick = function () {
        wrap.style.left = -172 + "px";
    };
    for (var i = 0; i < color_change.length; i++) {
        color_change[i].id = i;
        color_change[i].onclick = function () {
            change.style.backgroundColor = color_change[this.id].style.backgroundColor;
        }
    }
</script>
</body>
</html>

問(wèn)題:

當(dāng)顏色選擇器的顏色是使用嵌入式或者外部引入的方式添加時(shí)漫贞,javascriptstyle屬性無(wú)效督笆,獲取不到顏色值。

解決方法:

javascriptstyle屬性只能獲取內(nèi)聯(lián)樣式伶贰,對(duì)于外部引入樣式和嵌入式樣式需要用currentStyle屬性蛛砰。但是,currentStyleFirefoxChrome下不支持幕袱,需要使用如下兼容性代碼:

HTMLElement.prototype.__defineGetter__("currentStyle", function () {
            return this.ownerDocument.defaultView.getComputedStyle(this, null);
        });
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
        .wrap {
            width: 220px;
            height: 200px;
            position: absolute;
            top: 300px;
            left: -172px;
        }
        .open-close {
            height: 45px;
            width: 48px;
            background: url("open-close.png") no-repeat;
            background-size: contain;
            border: 1px solid grey;
            border-left: none;
            position: absolute;
            top: 0;
            right: 0;
            z-index: 2;
        }
        .changer {
            height: 150px;
            width: 170px;
            position: absolute;
            top: 0;
            left: 0;
            border: 1px solid grey;
            text-align: center;
            padding-top: 8px;
        }
        .list > li {
            display: block;
            width: 36px;
            height: 36px;
            float: left;
            margin-left: 9%;
            margin-top: 10%;
        }
        .color-orange {
            background-color: orange;
        }
        .color-red {
            background-color: red;
        }
        .color-blue {
            background-color: blue;
        }
        .color-blank {
            background-color: black;
        }
        .color-green {
            background-color: green;
        }
        .color-pink {
            background-color: pink;
        }
        #change {
            border: 1px solid black;
            width: 200px;
            height: 200px;
            text-align: center;
            line-height: 200px;
        }
    </style>
</head>
<body>
<div class="wrap" id="wrap">
    <!--html-->
    <div class="open-close" id="open"></div>
    <div class="changer">
        <span>顏色的選擇</span>
        <ul class="list">
            <li class="color-orange"></li>
            <li class="color-red"></li>
            <li class="color-blue"></li>
            <li class="color-blank"></li>
            <li class="color-green"></li>
            <li class="color-pink"></li>
        </ul>
    </div>
</div>
<div id="change">
change color
</div>
<script>
    HTMLElement.prototype.__defineGetter__("currentStyle", function () {
        return this.ownerDocument.defaultView.getComputedStyle(this, null);
    });
    var open = document.getElementById("open");
    var wrap = document.getElementById("wrap");
    var list = document.getElementById("list");
    var change = document.getElementById("change");
    var color_change = document.getElementsByTagName("li");
    change.style.backgroundColor="purple";
    open.onmouseover = function () {
        wrap.style.left = 0 + "px";

    };
    open.onclick = function () {
        wrap.style.left = -172 + "px";
    };

    for (var i = 0; i < color_change.length; i++) {
        color_change[i].id = i;
        color_change[i].onclick = function () {
            change.style.backgroundColor = color_change[this.id].currentStyle.backgroundColor;
        }
    }
</script>
</body>
</html>
演示.gif
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末暴备,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子们豌,更是在濱河造成了極大的恐慌涯捻,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,423評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件望迎,死亡現(xiàn)場(chǎng)離奇詭異障癌,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)辩尊,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,147評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門涛浙,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人摄欲,你說(shuō)我怎么就攤上這事轿亮。” “怎么了胸墙?”我有些...
    開封第一講書人閱讀 157,019評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵我注,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我迟隅,道長(zhǎng)但骨,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,443評(píng)論 1 283
  • 正文 為了忘掉前任智袭,我火速辦了婚禮奔缠,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘吼野。我一直安慰自己校哎,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,535評(píng)論 6 385
  • 文/花漫 我一把揭開白布瞳步。 她就那樣靜靜地躺著闷哆,像睡著了一般。 火紅的嫁衣襯著肌膚如雪谚攒。 梳的紋絲不亂的頭發(fā)上阳准,一...
    開封第一講書人閱讀 49,798評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音馏臭,去河邊找鬼野蝇。 笑死,一個(gè)胖子當(dāng)著我的面吹牛括儒,可吹牛的內(nèi)容都是我干的绕沈。 我是一名探鬼主播,決...
    沈念sama閱讀 38,941評(píng)論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼帮寻,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼乍狐!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起固逗,我...
    開封第一講書人閱讀 37,704評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤浅蚪,失蹤者是張志新(化名)和其女友劉穎藕帜,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體惜傲,經(jīng)...
    沈念sama閱讀 44,152評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡洽故,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,494評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了盗誊。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片时甚。...
    茶點(diǎn)故事閱讀 38,629評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖哈踱,靈堂內(nèi)的尸體忽然破棺而出荒适,到底是詐尸還是另有隱情,我是刑警寧澤开镣,帶...
    沈念sama閱讀 34,295評(píng)論 4 329
  • 正文 年R本政府宣布刀诬,位于F島的核電站,受9級(jí)特大地震影響哑子,放射性物質(zhì)發(fā)生泄漏舅列。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,901評(píng)論 3 313
  • 文/蒙蒙 一卧蜓、第九天 我趴在偏房一處隱蔽的房頂上張望帐要。 院中可真熱鬧,春花似錦弥奸、人聲如沸榨惠。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,742評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)赠橙。三九已至,卻和暖如春愤炸,著一層夾襖步出監(jiān)牢的瞬間期揪,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,978評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工规个, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留凤薛,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,333評(píng)論 2 360
  • 正文 我出身青樓诞仓,卻偏偏與公主長(zhǎng)得像缤苫,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子墅拭,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,499評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容