选中框中的元素id-value(下拉列表)

时间:2013-09-30 14:23:01

标签: javascript jquery html html5

我想检查我的选择框是否有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执行此操作? 这是我想要的简化版本。

1 个答案:

答案 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
        }
    });
});

这应该有效;)!使用上一个解决方案,代码在加载页面时执行,而不是在选择时执行。