1
如何檢查選擇框是否爲空,並提示用戶「選擇框包含0項」。檢查選擇框是否爲空
如何檢查選擇框是否爲空,並提示用戶「選擇框包含0項」。檢查選擇框是否爲空
if (document.getElementById('select').options.length == 0)
alert('The selectbox contains 0 items');
用途:
if (selectObject.options.length == 0) {
alert('The selectbox contains 0 items');
}