我希望能够允许用户在 HTML 选择下拉列表中添加自己的选项。除了获取值并在选择菜单下创建“选项”的部分之外,我编写了大部分代码。
HTML
<li id="add_1_parent">
<div>
<select width="100" class="add_select add_referral">
<option value="">Incorporation</option>
<option value="">Corporation</option>
<option value="">Limited Liability Corporation</option>
<option value="">Sole Proprietor</option>
</select>
<a href="#" id="add_1_child">Add</a>
</div>
</li>
JS
$(document).ready(function() {
$('#add_1_child').click(function() {
$('#add_1_parent').append('<input id="add_1_foster_add" class="add_input" type="text" size="50" class="" value="" maxlength="255"/><a href="#" id="add_1_foster_child">Add</a>');
});
$('#add_1_foster').click(function() {
// Add the value to the select HTML here..?
});
});
单击"Add"
按钮时,它需要显示一个文本框。
当您单击定义的第二个添加时,"add_1_foster_child"
它需要将值从 中取出input
,将其变为菜单<option>
下的一个。select
我不知道该怎么做是从中获取值input
并将其放入select
菜单中。