gpt4 book ai didi

javascript - 如何使用 jquery 在 div 中显示多个选定的值?

转载 作者:行者123 更新时间:2023-11-28 14:11:31 26 4
gpt4 key购买 nike

我希望能够使用 jquery 将多选获得的值显示到空 div 中。例如,在下面的代码中,我将如何使用 jquery 实现它?

<select multiple data-style="bg-white rounded-pill px-4 py-3 shadow-sm" class="selectnumber w-100 multiple searchable='Search here..'">
<option>23</option>
<option>17</option>
<option>14</option>
<option>11</option>
<option>9</option>
</select>

<div class="numberselected">
numbers selected should display here...
</div>

最佳答案

您可以执行以下操作

$(document).on('change', '.selectnumber', function(e){

var selected = $('.selectnumber').val();
$('.numberselected').text(selected);


//console.log(selected);
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<select multiple data-style="bg-white rounded-pill px-4 py-3 shadow-sm"
class="selectnumber w-100 multiple searchable='Search here..'">
<option>23</option>
<option>17</option>
<option>14</option>
<option>11</option>
<option>9</option>
</select><!-- End -->
<div class="numberselected">
//numbers selected should display here.
</div>

关于javascript - 如何使用 jquery 在 div 中显示多个选定的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59264837/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com