如何使用纯JavaScript检查选择框是否为空,并提醒用户“选择框包含0个项目。”
答案 0 :(得分:5)
if (document.getElementById('select').options.length == 0)
alert('The selectbox contains 0 items');
答案 1 :(得分:0)
使用:
if (selectObject.options.length == 0) {
alert('The selectbox contains 0 items');
}