从选择框中删除所选项目
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从选择框中删除所选项目相关的知识,希望对你有一定的参考价值。
This will remove the items in a select box/list box that have been selected.
function remove_selected_items(listid){ var list = document.getElementById(listid); var items = list.options.length; for(var i = items-1; i >= 0; i--) { if(list.options[i].selected == true){ list.remove(i); } } }
以上是关于从选择框中删除所选项目的主要内容,如果未能解决你的问题,请参考以下文章
R shinydashboard 在值框中显示所选输入的总和