1

我想检查我的选择框是否有 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 做到这一点?这是我想要的简化版本。

4

1 回答 1

1
$(document).ready(function(){

    $("#startTime").change(function(){ // this can also be a form submit or something
        if($("#nextDay").is(":selected"))
        {
            alert("Working!");
                    //do something
        }
    });
});

这应该工作;)!在前面的解决方案中,代码是在页面加载时执行的,而不是在进行选择时执行的。

于 2013-09-30T14:25:27.833 回答