zoukankan      html  css  js  c++  java
  • 基础查询,多选,全选,分页功能

         <script type="text/javascript">

            $(document).ready(function () {//预加载

                $('#chkAll').click(

                function () {

                    $("INPUT[type='checkbox']").attr('checked', $('#chkAll').is(':checked'));

                });

    //            $('#chkAll').click(

                function () {

                    $("input[name='chkItem']").each(function () {

                        this.checked = $('#chkAll').is(':checked');

                    }); 

                });

                $("#DropDownList1").change(function () {

                    window.location.href = "整体.aspx?page=" + $("#hidPage").val() + "&score=" + $(this).val() + "&search=" + $("#searchBox").val();

                   

            });

            });

                <asp:DropDownList ID="DropDownList1" runat="server">

                    <asp:ListItem Text="查询分数" Value="0"></asp:ListItem>

                    <asp:ListItem Text="90分以上" Value="90 and 100"></asp:ListItem>

                </asp:DropDownList>

     <asp:CheckBox ID="chkAll" runat="server" Text="全选" />

    后台代码的取值 string score = HttpContext.Current.Request["score"];

  • 相关阅读:
    CISCO 过载NAT配置(小型网络)
    CISCO静态路由配置
    CISCO 动态路由(RIP)
    CISCO 动态路由(OSPF)
    20191315 2.3.1测试
    cat userlist课上练习
    xxd
    2021-2022-1 20191315《信息安全系统设计与实现(上)》学习笔记6
    团队作业(二):需求分析
    2021-2022-1 20191315《信息安全系统设计与实现(上)》学习笔记5
  • 原文地址:https://www.cnblogs.com/change4now/p/4525171.html
Copyright © 2011-2022 走看看