zoukankan      html  css  js  c++  java
  • JQ 操作样式,单选按钮跟复选框

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title></title>
        <script src="../Scripts/jquery-1.4.1.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(function () {
                $("#getValue").click(function () {
                    alert($(":radio[name=gender]:checked").val());
                });
                $("#setValue").click(function () {
                    $(":radio[name=gender]").val(["保密"]); //给radio设值(选中)时要添加中括号[]
                });
            });
    
            /*****选中多个*******/
            $(function () {
                $("#checkBtn").click(function () {
                    $(":checkbox").val(["羽毛球", "篮球"]);
                });
            });
        </script>
    </head>
    <body>
        <input type="radio" value="" name="gender" />男<br />
        <input type="radio" value="" name="gender" />女<br />
        <input type="radio" value="保密" name="gender" />保密<br />
        <input type="button" value="取值" id="getValue" />
        <input type="button" value="设置" id="setValue" />
        <br />
        <br />
        <br />
        <input type="checkbox" value="篮球" />篮球
        <input type="checkbox" value="足球" />足球
        <input type="checkbox" value="乒乓球" />乒乓球
        <input type="checkbox" value="冰球" />冰球
        <input type="checkbox" value="羽毛球" />羽毛球
        <input type="checkbox" value="橄榄球" />橄榄球
        <input type="button" id="checkBtn" value="选中多个" />
    </body>
    </html>
  • 相关阅读:
    最热CPLDFPGA论坛
    DSP Builder开发环境安装
    math.h数学函数库
    (转)Fast Input/Output Registers约束
    用EXCEL去掉最高最低数,网上看到,觉得不错
    GMS6.5.3有0DAY的下载了
    [转]为ArcGIS制作符号
    Total Commander 7.5Beta1的便携版
    关于CAD的一个小发现
    可恶的AP PDF password recovery
  • 原文地址:https://www.cnblogs.com/sumg/p/3742707.html
Copyright © 2011-2022 走看看