select的option触发事件

Posted zbly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了select的option触发事件相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="zh">

    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta http-equiv="X-UA-Compatible" content="ie=edge" />
        <title>Document</title>
        <style type="text/css">
            .option_show {
                display: none;
            }
            
            .discount {
                width: 70px;
            }
        </style>
    </head>

    <body>
        <select class="select" name="oyhfd">
            <option value="0" selected="selected">请选择</option>
            <option class="option" value="1">足球</option>
            <option class="option" value="2">篮球</option>
            <option class="option" value="3">乒乓球</option>
            <option class="option" value="4">网球</option>
        </select>
        <span style="display:none;" class="option_show">
    <input type="text" class="discount" id="" name="" placeholder="其他球类"/>
  </span>
    </body>

    <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
    <script>
        $(".select").on("change", function() {
            if($("option:selected", this).val() == 4) {
                $(".option_show").show();
            } else {
                $(".discount").val("");
                $(".option_show").hide();
            }
        });
    </script>

</html>
 

 

以上是关于select的option触发事件的主要内容,如果未能解决你的问题,请参考以下文章

JS 实现 select中指定option选中触发事件(下拉框)

python中select点击option触发

如何取jquery change()移开触发事件取select下拉框option值

layui 触发 select 下option 被选择事件

select的option触发事件

实现 select中指定option选中触发事件