Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
利用可能なオプションが 1 つしかない場合、選択ボックスを非表示にするにはどうすればよいですか。(別の選択ボックスによって更新される動的な選択ボックスです)
if($('#select_list>option').length == 1) $('#select_list').hide();
var selectBox = document.getElementById("selectBox"); if(selectBox.length == 1) { selectBox.style.cssText = "display:none"; }