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

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

如何通過jquery將字符串first和last添加到復(fù)選框

如何通過jquery將字符串first和last添加到復(fù)選框

翻過高山走不出你 2023-10-30 15:47:16
這是我的html:<input class="eret" type="checkbox" value="Red">Red</input><input class="eret" type="checkbox" value="Green">Green</input><input class="eret" type="checkbox" value="Blue">Blue</input><input class="eret" type="button" value="Get checkboxes" id="getCheckboxesButton"></input><div id="debugOutput"></div>這是我的 JavaScript:$(document).ready(function() {    $('#getCheckboxesButton').live('click', function(event) {        var checkboxValues = [];        $('input.eret[type="checkbox"]:checked').each(function(index, elem) {            checkboxValues.push($(elem).val());        });        $('#debugOutput').html(checkboxValues.join(','));    });});如何使用此輸出定義 Javascript 代碼?輸出(示例):Color:"Green"  --> One : Without CommaColor:"Green",Color:"Blue" / Color:"Red",Color:"Green",Color:"Blue"  --> Multi : With Commahttps://i.stack.imgur.com/iFyWT.png jsfiddle
查看完整描述

1 回答

?
鴻蒙傳說

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

像這樣的東西嗎?


$(document).ready(function() {

    $('#getCheckboxesButton').on('click', function(event) {

        var checkboxValues = [];

        $('input.eret[type="checkbox"]:checked').each(function(index, elem) {

            checkboxValues.push('Color:"'  +  $(elem).val() + '"');

        });

        $('#debugOutput').html(checkboxValues.join(','));

    });

});

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<input class="eret" type="checkbox" value="Red">Red

<input class="eret" type="checkbox" value="Green">Green

<input class="eret" type="checkbox" value="Blue">Blue

<input class="eret" type="button" value="Get checkboxes" id="getCheckboxesButton">

<div id="debugOutput">

</div>


查看完整回答
反對 回復(fù) 2023-10-30
  • 1 回答
  • 0 關(guān)注
  • 120 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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