第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在切換時(shí)更改標(biāo)簽文本

在切換時(shí)更改標(biāo)簽文本

慕的地6264312 2022-10-27 15:11:09
我目前在我的瀏覽器中有一個(gè)工作暗模式開關(guān),當(dāng)我打開時(shí),我的網(wǎng)站變成黑色,當(dāng)我關(guān)閉時(shí),我的網(wǎng)站變成白色。但問(wèn)題是,我想更改切換按鈕旁邊的“暗模式”標(biāo)簽,以便在切換關(guān)閉時(shí)文本更改為“亮模式”,在切換打開時(shí)更改為“暗模式”。我該怎么做?這是當(dāng)前外觀的圖片(注意:“Dark”這個(gè)詞根本不會(huì)隨著開關(guān)而改變)HTML 的摘錄:<div class="nav-link">     <div class="custom-control custom-switch">       <input type="checkbox" class="custom-control-input" id="darkSwitch" />       <label class="custom-control-label" for="darkSwitch">Dark Mode</label>     </div>     <!-- Javascript For Darkmode Switch -->     <script src="index.js"></script></div>來(lái)自javascript的摘錄:const darkSwitch = document.getElementById("darkSwitch");function initTheme() {  const e =    null !== localStorage.getItem("darkSwitch") &&    "dark" === localStorage.getItem("darkSwitch");  (darkSwitch.checked = e),    e      ? document.body.setAttribute("data-theme", "dark")      : document.body.removeAttribute("data-theme");}function resetTheme() {  darkSwitch.checked    ? (document.body.setAttribute("data-theme", "dark"),      localStorage.setItem("darkSwitch", "dark"))    : (document.body.removeAttribute("data-theme"),      localStorage.removeItem("darkSwitch"));}window.addEventListener("load", () => {  darkSwitch &&    (initTheme(),    darkSwitch.addEventListener("change", () => {      resetTheme();    }));});CSS的摘錄:[data-theme="dark"] {  background-color: #111 !important;  color: #eee;}[data-theme="dark"] .bg-light {  background-color: #333 !important;}[data-theme="dark"] .bg-white {  background-color: #000 !important;}[data-theme="dark"] .bg-black {  background-color: #eee !important;}/* CSS For table */[data-theme="dark"] .table {  background-color: #111 !important;  color: #eee;}
查看完整描述

3 回答

?
Smart貓小萌

TA貢獻(xiàn)1911條經(jīng)驗(yàn) 獲得超7個(gè)贊

在您的情況下,將 ID 添加到要更改的文本中:


<label class="custom-control-label" id="modelLabel" for="darkSwitch">Dark Mode</label>

并按如下方式更新您的 resetTheme() 函數(shù):


function resetTheme() {

  var modelLabel = document.getElementById("modelLabel");


  if(darkSwitch.checked){

    (document.body.setAttribute("data-theme", "dark"),

      localStorage.setItem("darkSwitch", "dark"));


    modelLabel.innerHTML = "Light Mode";

  }

  else{

    (document.body.removeAttribute("data-theme"),

      localStorage.removeItem("darkSwitch"));


        modelLabel.innerHTML = "Dark Mode";

  }  

}

希望能幫助到你 :)


查看完整回答
反對(duì) 回復(fù) 2022-10-27
?
慕哥9229398

TA貢獻(xiàn)1877條經(jīng)驗(yàn) 獲得超6個(gè)贊

您可以從標(biāo)簽中刪除文本并使用 css:before在其中添加內(nèi)容。


[for="darkSwitch"]:before{

  content:'Dark Mode'

}


[data-theme="dark"] [for="darkSwitch"]:before{

  content:'Light Mode'

}

演示在https://jsfiddle.net/ju2n3svy/


查看完整回答
反對(duì) 回復(fù) 2022-10-27
?
至尊寶的傳說(shuō)

TA貢獻(xiàn)1789條經(jīng)驗(yàn) 獲得超10個(gè)贊

為標(biāo)簽提供一個(gè) ID 并使用 DOM 更改文本。


<label class="custom-control-label" for="darkSwitch" id="darkLabel">Dark Mode</label>

var label=document.getElementById("darkLabel");

label.innertHTML="Dark Mode"; //If Light Mode

label.innertHTML="Light Mode"; //If Dark Mode


查看完整回答
反對(duì) 回復(fù) 2022-10-27
  • 3 回答
  • 0 關(guān)注
  • 253 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)