• jquery单选框radio绑定click事件实现方法


    本文实例讲述了jquery单选框radio绑定click事件实现方法。分享给大家供大家参考。
    具体实现方法如下:

    <html>
    <head>
    <title>单选框radio绑定click事件</title>
    <meta http-equiv="content-type" content="text/html;charset=utf-8" />
    <script type="text/javascript" src="jquery-1.8.2.min.js"></script>
    <script type="text/javascript">
     $(function(){
      $(":radio").click(function(){
       alert("您是..." + $(this).val());
      });
     });
    </script>
    <style type="text/css">
    h5{color:blue;}
    textarea{resize:none;}
    #word{color:red;}
    </style>
    </head>
    <body>
    <h5>单选框 radio 绑定 click 事件</h5>
    <form action="" method="">
     <input type="radio" name="gender" value="男性">男性
     <input type="radio" name="gender" value="女性">女性
     <input type="radio" name="gender" value="春哥">春哥
    </form>
    </body>
    </html>
    
  • 相关阅读:
    linux基础——虚拟机的创建及安装操作系统
    并发编程之多进程
    操作系统与进程(理论知识点)
    粘包
    socket-网络编程
    网络编程1
    网络编程
    异常
    元类
    反射与内置方法
  • 原文地址:https://www.cnblogs.com/phtjzzj/p/7650441.html
Copyright © 2020-2023  润新知