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

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

如何使用純 Javascript 檢查 Switch Bootstrap 5

如何使用純 Javascript 檢查 Switch Bootstrap 5

米脂 2023-11-11 15:53:43
我想用帶有函數(shù)的純 Javascript 進(jìn)行切換。但似乎該函數(shù)內(nèi)的循環(huán)不起作用,因?yàn)樗荒軝z測(cè)默認(rèn)狀態(tài)。當(dāng)我嘗試手動(dòng)設(shè)置輸入狀態(tài)時(shí),if-else 語(yǔ)句起作用。但是,如果我點(diǎn)擊開(kāi)關(guān),什么也不會(huì)發(fā)生。我為此使用 Bootstrap 5 Beta。只要除了引導(dǎo)包 JS 之外不需要框架/庫(kù)/附加模塊,就可以接受任何更好的建議。這是我的切換 html 代碼:<div class="form-check form-switch mx-3">    <input class="form-check-input" type="checkbox" id="pricingSwitch"></div>這是我的 Javascript 函數(shù):function pricingTable() {    console.log("Called")    var checkbox = document.getElementById('pricingSwitch')    var priceMonthly = document.getElementsByClassName("price-monthly")    var priceAnnual = document.getElementsByClassName("price-annual")    var durationMonth = document.getElementsByClassName("duration-month")    var durationYear = document.getElementsByClassName("duration-year")    console.log("Pre Loop")    for (var i = 0; i < priceMonthly.length; i++) {        console.log(checkbox.checked)        console.log(i)        if (checkbox.checked == true) {            priceMonthly[i].style.display = "none"            priceAnnual[i].style.display = "inline-block"            durationMonth[i].style.display = "none"            durationYear[i].style.display = "inline-block"        } else if (checkbox.checked == false) {            priceMonthly[i].style.display = "inline-block"            priceAnnual[i].style.display = "none"            durationMonth[i].style.display = "inline-block"            durationYear[i].style.display = "none"        }    }}
查看完整描述

1 回答

?
慕運(yùn)維8079593

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

所以看來(lái)我沒(méi)有為復(fù)選框添加偵聽(tīng)器。這是最終的工作代碼


var checkbox = document.getElementById('pricingSwitch')


var priceMonthly = document.getElementsByClassName("price-monthly")

var priceAnnual = document.getElementsByClassName("price-annual")

var durationMonth = document.getElementsByClassName("duration-month")

var durationYear = document.getElementsByClassName("duration-year")


function checker(checked) {

  checked ? showAnnual() : showMonthly()

}


function showAnnual() {

  priceMonthly[0].style.display = "none"

  priceAnnual[0].style.display = "inline-block"

  durationMonth[0].style.display = "none"

  durationYear[0].style.display = "inline-block"

}


function showMonthly() {

  priceMonthly[0].style.display = "inline-block"

  priceAnnual[0].style.display = "none"

  durationMonth[0].style.display = "inline-block"

  durationYear[0].style.display = "none"

}


checker(this.checked)


checkbox.addEventListener('change', function () {

  checker(this.checked)

})


查看完整回答
反對(duì) 回復(fù) 2023-11-11
  • 1 回答
  • 0 關(guān)注
  • 155 瀏覽
慕課專欄
更多

添加回答

舉報(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)