我想检查我的选择框是否有ID。
这是我的代码:
<select name="startTime" id="startTime">
<option>23:00</option>
<option id="nextDay">00:30</option>
</select>
现在我想检查一下用户是否正常(23:00)。或者id =&#34; nextDay&#34;。
所以它是这样的支票:
if(selected has id="nextDay"){ //Than do something}
如何使用javascript和/或jquery执行此操作? 这是我想要的简化版本。
答案 0 :(得分:1)
$(document).ready(function(){
$("#startTime").change(function(){ // this can also be a form submit or something
if($("#nextDay").is(":selected"))
{
alert("Working!");
//do something
}
});
});
这应该有效;)!使用上一个解决方案,代码在加载页面时执行,而不是在选择时执行。