gpt4 book ai didi

jquery - 从文本框插入多个选择框

转载 作者:行者123 更新时间:2023-12-01 04:44:32 25 4
gpt4 key购买 nike

我正在尝试将文本框中的值插入到多个选择中,我已插入其中一个,但我不确定如何插入两个。

我的代码。 https://jsfiddle.net/neilcosby123/xazyfej3/

<input type="text" name="region" id="txt_RegionName" />
<br />
<input type="button" name="add" id="btn_AddToList" value="add" class="btn btn-success" />
<br />
<select size="10" id="lst_Regions" style="width: 500px;"></select>
<select size="10" id="2nd_Regions" style="width: 500px;"></select>

jQuery

$('#btn_AddToList').click(function () {
var val = $('#txt_RegionName').val();
$('#lst_Regions').append('<option>' + val + '</option>');
$('#2nd_Regions').append('<option>' + val + '</option>');
$('#txt_RegionName').val('').focus();
})

编辑:上面的代码正在运行

最佳答案

尝试修复 #2nd 而不是 #nd 的拼写错误

$('#btn_AddToList').click(function () {
var val = $('#txt_RegionName').val();
$('#lst_Regions,#2nd_Regions').append('<option>' + val + '</option>');
$('#txt_RegionName').val('').focus();
});

DEMO

关于jquery - 从文本框插入多个选择框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31991939/

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