-1
我需要獲得多選列表框中選定項目的計數,嘗試在下面但不能使其工作。使用javascript計算多選列表框中選定項目的數量
var selItem = document.getElementById("users").options;
if(selItem.selected == 0){
alert('select item');
}
在這裏,我想給警報如果沒有選中的項目,但沒有工作
if (document.getElementById('usersb').options:selected.length == 0){
alert('select item');
}
誰能給一個想法,我怎麼能做到這一點。
谷歌你追問和驚訝 – lordkain