从选择框中删除项目

如何从选择框中删除项目或向其中添加项目?我正在运行jQuery,这应该使任务更轻松。下面是一个示例选择框。


<select name="selectBox" id="selectBox">

    <option value="option1">option1</option>

    <option value="option2">option2</option>

    <option value="option3">option3</option>

    <option value="option4">option4</option>    

</select>


繁花不似锦
浏览 559回答 3
3回答

qq_花开花谢_0

您可以使用以下方法删除所选项目:$("#selectBox option:selected").remove();如果您有列表而不是下拉列表,这将很有用。

呼啦一阵风

window.onload = function (){&nbsp; &nbsp;&nbsp; &nbsp; var select = document.getElementById('selectBox');&nbsp; &nbsp; var delButton = document.getElementById('delete');&nbsp; &nbsp; function remove()&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; value = select.selectedIndex;&nbsp; &nbsp; &nbsp; &nbsp; select.removeChild(select[value]);&nbsp; &nbsp; }&nbsp; &nbsp; delButton.onclick = remove;&nbsp; &nbsp;&nbsp;}要添加该项目,我将创建第二个选择框,然后:var select2 = document.getElementById('selectBox2');var addSelect = document.getElementById('addSelect');function add(){&nbsp; &nbsp; value1 = select2.selectedIndex;&nbsp; &nbsp; select.appendChild(select2[value1]);&nbsp; &nbsp;&nbsp;}addSelect.onclick = add;虽然不是jQuery。
打开App,查看更多内容
随时随地看视频慕课网APP