实现代码如下:

<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选择的值的代码】的全部内容了,欢迎留言评论进行交流!

赞(0) 踩(0)
发表我的评论

最新评论

  1. 暂无评论