检查选择框是否为空

时间:2013-02-11 17:42:00

标签: javascript

如何使用纯JavaScript检查选择框是否为空,并提醒用户“选择框包含0个项目。”

2 个答案:

答案 0 :(得分:5)

if (document.getElementById('select').options.length == 0) 
    alert('The selectbox contains 0 items');

http://jsfiddle.net/Gf8QK/

答案 1 :(得分:0)

使用:

if (selectObject.options.length == 0) {
    alert('The selectbox contains 0 items');
}

请参阅http://www.w3schools.com/jsref/coll_select_options.asp