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

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

檢查復(fù)選框是選中還是取消選中

檢查復(fù)選框是選中還是取消選中

冉冉說 2022-12-29 16:15:33
我想知道用戶是否選中了復(fù)選框,如果是,則應(yīng)該禁用日期;如果未選中,則啟用日期。復(fù)選框上有更改事件$('input[type=checkbox]:checked').click(function () {        if ($('#chkShowAll').prop('checked')) {            $("#MainContent_txtSrchFromDate").attr('readonly', 'readonly');            $("#MainContent_txtSrchToDate").attr('readonly', 'readonly');        }        else {            $("#MainContent_txtSrchFromDate").removeAttr('readonly', 'readonly');            $("#MainContent_txtSrchToDate").removeAttr('readonly', 'readonly');         }    });
查看完整描述

4 回答

?
開滿天機(jī)

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

這是簡短而簡單的。

 $('input[type=checkbox]').on('click', function() {
        $('#MainContent_txtSrchToDate').prop('disabled', $(this).is(":checked"));
 });


查看完整回答
反對 回復(fù) 2022-12-29
?
莫回?zé)o

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

試試這個(gè):


$('input[type=checkbox]').click(function() {

  let dateElements = $("#MainContent_txtSrchFromDate, #MainContent_txtSrchToDate");

  if ($(this).is(":checked")) {

    dateElements.prop("readonly", true);

  } else {

    dateElements.prop("readonly", false);

  }

});


查看完整回答
反對 回復(fù) 2022-12-29
?
米脂

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

要檢查一個(gè)復(fù)選框是否被選中,你可以簡單地這樣做:

$('#chkShowAll').checked

如果選中則返回 true 否則返回 false


查看完整回答
反對 回復(fù) 2022-12-29
?
UYOU

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

if($("#checkbox_id").is(':checked')){

 console.log("checked");

}

else{

  console.log("not checked");

}

此顯示復(fù)選框是否選中


查看完整回答
反對 回復(fù) 2022-12-29
  • 4 回答
  • 0 關(guān)注
  • 158 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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