js 获取Listbox选择的值的代码
作者:
将Listbox的 SelectionMode="Multiple",设置为多选时,用JS获取多选的值。
复制代码 代码如下:
<script type="text/javascript">
function GetValue() {
var strlist = document.getElementById("ListBox1");//获取Listbox
var str= "";
//遍历Listbox,取得选中项的值
if (strlist.options.length > 0) {
for (var i = 0; i < strlist.options.length; i++) {
if (strlist.options[i].selected == true) {
var j = strlist.options[i].value;
str+=j+","; //把Value值串起来
}
}
var strValue=str.replace(/,$/, ""); //去掉最后一个逗号
alert(strValue);
}
else {
alert("No Item in Listbox");
}
}
</script>
您可能感兴趣的文章:
- JS ListBox的简单功能实现代码
- javascript实现listbox左右移动实现代码
- 使用javascript实现ListBox左右全选,单选,多选,全请
- JavaScript如何从listbox里同时删除多个项目
- 用JavaScript实现类似于ListBox功能示例代码
- JavaScript控制两个列表框listbox左右交换数据的方法
- 轻松使用jQuery双向select控件Bootstrap Dual Listbox
- jquery控制listbox中项的移动并排序
- 基于JQUERY的两个ListBox子项互相调整的实现代码
- jquery控制listbox中项的移动并排序的实现代码
- jquery移动listbox的值原理及代码
- JS与jQuery实现ListBox上移,下移,左移,右移操作功能示例