jQuery – 检查是否选择了任何选择选项

前端之家收集整理的这篇文章主要介绍了jQuery – 检查是否选择了任何选择选项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
基本上我有一个选择选项,从数据库中将所有的“旅游名称”作为$touroptions. $touroptions可以包含来自1-20个值的任何内容(选择选项).

我需要做的是有一个jQuery函数做如下所示:

If (any option) #sel-destination-tour is selected {
//DO SOMETHING
}
ELSE {
//DO SOMETHING ELSE
}

我只是不知道我该怎么做

HTML

<select name="sel-destination-tour" id="sel-destination-tour" class="input-select-tour">

    <option value="0"></option>

    <?PHP echo $touroptions ?>

</select>

解决方法

你可以通过测试select属性的值来检查一个选项
if($('#sel-destination-tour').val()){
    // do something
} else {
    // do something else
}
原文链接:https://www.f2er.com/jquery/180131.html

猜你在找的jQuery相关文章