我想检查我的选择框是否有 id。
这是我的代码:
<select name="startTime" id="startTime">
<option>23:00</option>
<option id="nextDay">00:30</option>
</select>
现在我想检查用户是否有正常的(23:00)。或者 id="nextDay" 的那个。
所以它会是这样的检查:
if(selected has id="nextDay"){ //Than do something}
如何使用 javascript 和/或 jquery 做到这一点?这是我想要的简化版本。