码迷,mamicode.com
首页 > 其他好文 > 详细

select的option触发事件

时间:2018-11-17 20:51:22      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:cti   change   col   inpu   count   function   ble   head   selected   

<!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触发事件

标签:cti   change   col   inpu   count   function   ble   head   selected   

原文地址:https://www.cnblogs.com/zbly/p/9969078.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!