JQuery显示隐藏DIV的方法及代码实例

1. 如果在载入是隐藏:

复制代码 代码如下:


<head>
<script language="javascript">
function HideWeekMonth()
{
    $("#tt1").hide();
    $("#tt2").hide();
}
</script>
</head>

<body>
</body>


2. 动态隐藏和显示:

复制代码 代码如下:


<td>
                <!-- 能用
                <input type="button" value="<?php echo $ini_array['module.insert'];?>" />
                <input type="button" value="<?php echo $ini_array['module.insert'];?>" />
                -->
                <!-- 直接使用按钮的id没有问题
                <input type="text" maxlength="50" size="50"></td> -->
                <input type="radio" value="1" checked='checked'><?php echo $ini_array['time.one']?>&nbsp;&nbsp;&nbsp;&nbsp;
                <input type="radio" value="2"><?php echo $ini_array['time.day']?>&nbsp;&nbsp;&nbsp;&nbsp;
                <input type="radio" value="3"><?php echo $ini_array['time.week']?>&nbsp;&nbsp;&nbsp;&nbsp;
                <input type="radio" value="4"><?php echo $ini_array['time.month']?>&nbsp;&nbsp;&nbsp;&nbsp;
                <br>
                <!-- 能用
                <div><input type="text" maxlength="50" size="50" value="tt1"></div>
                <div><input type="text" maxlength="50" size="50" value="tt2"></div>
                -->
                <div>               
                    <br>
                    1&nbsp;<input type="checkbox" value="1">&nbsp;&nbsp;&nbsp;&nbsp;
                    2&nbsp;<input type="checkbox" value="1">&nbsp;&nbsp;&nbsp;&nbsp;</div>
                <div>               
03&nbsp;<input type="checkbox">&nbsp;&nbsp;&nbsp;&nbsp;
                    04&nbsp;<input type="checkbox">&nbsp;&nbsp;&nbsp;&nbsp;</div>
          </td>

<!-- 绑定事件似乎要写在被绑定对象的后面 -->
    <script type="text/javascript" >
        $("#btnOne").bind("click", function(event) { $("#tt1").hide(); $("#tt2").hide(); });
        $("#btnDay").bind("click", function(event) { $("#tt1").hide(); $("#tt2").hide(); });
        $("#btnWeek").bind("click", function(event) { $("#tt1").show(); $("#tt2").hide(); });
        $("#btnMonth").bind("click", function(event) { $("#tt1").hide(); $("#tt2").show(); });
    </script>

以上代码之前,可能还要加上这句话:

复制代码 代码如下:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgjfgx.html