跳至正文

单选框 radio 绑定 click 事件

<html>
<head>
    <title>单选框radio绑定click事件</title>
    <meta http-equiv="content-type" content="text/html;charset=utf-8" />
    <script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script>
    <script type="text/javascript">
        $(function() {
            $("#kkk :radio").click(function() {
                alert("您是..." + $(this).val());
            });
        });
    </script>
</head>
 
<body>
    <h5>单选框 radio 绑定 click 事件</h5>
    <form action="" method="" id="kkk">
        <input type="radio" name="gender" value="男性">男性
        <input type="radio" name="gender" value="女性">女性
        <input type="radio" name="gender" value="猜猜看">猜猜看
    </form>
</body>
 
</html>
标签: