How to add item to a listBox using jquery.
如何使用jquery将项添加到listBox。
for example in the following listbox
例如,在以下列表框中
<option value="1"></option>
<option value="2">item 2</option>
<option value="3">item 3</option>
<option value="4">item 4</option>
<option value="0">All</option>
2 个解决方案
#1
29
$('#Select1').append('<option value="5">item 5</option>'); // adds item 5 at the end
$('#Select1 option').eq(0).after('<option value="new">new</option>'); // add new at the second position.
#2
9
Several methods are there. You can use
有几种方法。您可以使用
$('<option value="5">item 5</option>').appendTo('#listbox');
$('#listbox').append('<option value="5">item 5</option>');
#1
29
$('#Select1').append('<option value="5">item 5</option>'); // adds item 5 at the end
$('#Select1 option').eq(0).after('<option value="new">new</option>'); // add new at the second position.
#2
9
Several methods are there. You can use
有几种方法。您可以使用
$('<option value="5">item 5</option>').appendTo('#listbox');
$('#listbox').append('<option value="5">item 5</option>');