例如:     这一行的第一个数字04,我想将围红中04下对用的这个单元格的背景色填充为红色     这一行的第二个数字10,我想将围红中10下对用的这个单元格的背景色填充为红色     ……     以此类推         当然了,整个红球这一大列的数字(6个数)是变化的,         我想用JQuery来实现,如果您有更好的想法,也可以<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>"><title>测试</title><meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
<script type="text/javascript" src="js/jquery-1.10.1.js"></script>
<script type="text/javascript">
    $(document).ready(function () {
    $("tr:gt(2)").each(function () {
        var tds = $("td.red_one", this);
        $("td.red_two", this).each(function () {
            var num = parseInt(this.innerHTML);
            if (tds[num - 1].innerHTML !== "")
                tds[num - 1].style.backgroundColor = "red";
        });
    });
});
</script>
</head><body>
    
    <br>    <table align="center" border="0" cellspacing="0" cellpadding="0">
        <tr>
            <td>
                <table border="1" cellspacing="0" cellpadding="0">
                    <tr>
                        <td rowspan="2" height="18" width="72">期号</td>
                        <td colspan="6" height="18">红球</td>
                        <td rowspan="2" width="18" height="18">蓝球</td>
                    </tr>
                    <tr>
                        <td width="18" height="18">一</td>
                        <td width="18" height="18">二</td>
                        <td width="18" height="18">三</td>
                        <td width="18" height="18">四</td>
                        <td width="18" height="18">五</td>
                        <td width="18" height="18">六</td>
                    </tr>
                    <c:if test="${not empty bonusList }">
                        <c:forEach items="${bonusList }" var="a">
                            <tr>
                                <td width="18" height="18"></td>
                                <td width="18" height="18" class="red_one">04</td>
                                <td width="18" height="18" class="red_one">10</td>
                                <td width="18" height="18" class="red_one">14</td>
                                <td width="18" height="18" class="red_one">19</td>
                                <td width="18" height="18" class="red_one">23</td>
                                <td width="18" height="18" class="red_one">26</td>
                                <td width="18" height="18">06</td>
                            </tr>
                        </c:forEach>
                    </c:if>
                </table>
            </td>
            <td>
                <table border="1" cellspacing="0" cellpadding="0">
                    <tr>
                        <td colspan="33" height="18">围红</td>
                        <td rowspan="2" width="18" height="18">验证</td>
                    </tr>
                    <tr>
                        <td width="18" height="18">01</td>
                        <td width="18" height="18">02</td>
                        <td width="18" height="18">03</td>
                        <td width="18" height="18">04</td>
                        <td width="18" height="18">05</td>
                        <td width="18" height="18">06</td>
                        <td width="18" height="18">07</td>
                        <td width="18" height="18">08</td>
                        <td width="18" height="18">09</td>
                        <td width="18" height="18">10</td>
                        <td width="18" height="18">11</td>
                        <td width="18" height="18">12</td>
                        <td width="18" height="18">13</td>
                        <td width="18" height="18">14</td>
                        <td width="18" height="18">15</td>
                        <td width="18" height="18">16</td>
                        <td width="18" height="18">17</td>
                        <td width="18" height="18">18</td>
                        <td width="18" height="18">19</td>
                        <td width="18" height="18">20</td>
                        <td width="18" height="18">21</td>
                        <td width="18" height="18">22</td>
                        <td width="18" height="18">23</td>
                        <td width="18" height="18">24</td>
                        <td width="18" height="18">25</td>
                        <td width="18" height="18">26</td>
                        <td width="18" height="18">27</td>
                        <td width="18" height="18">28</td>
                        <td width="18" height="18">29</td>
                        <td width="18" height="18">30</td>
                        <td width="18" height="18">31</td>
                        <td width="18" height="18">32</td>
                        <td width="18" height="18">33</td>
                    </tr>
                    <c:if test="${not empty ddwhoneList }">
                        <c:forEach items="${ddwhoneList }" var="a">
                            <tr>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18" class="red_two">&nbsp;</td>
                                <td width="18" height="18">&nbsp;</td>
                            </tr>
                        </c:forEach>
                    </c:if>
                </table>
            </td>
        </tr>
    </table>
    <br>
    <!-- footer -->
    <jsp:include page="/global/footer.jsp"></jsp:include></body>
</html>
因为这个表需要从数据库的两个表中提取数据,所以在一个大表格中嵌套两个小表格,这样才可以使用<c:forEach items="${bonusList }" var="a">进行循环输出,如果您有更好的办法,请您告诉我!谢谢了!!!jQueryHTMLjavasript

解决方案 »

  1.   

    jsp 展现的时候 你直接判断也可以吧。你把bonusList 可以循环set 到变量里面,然后 接下来forEach 里面判断 ,<c:if set的值  eq '02'> 等等,加上红色背景。 
      

  2.   

    也可以jquery 实现 把红色的放在一个数组里面。然后 循环围红里面,如果相等就加上红色的背景。
      

  3.   

    jquery 的var redArr=[];
        $(document).ready(function () {
        $(".red_one").each(function () {
        redArr.push($(this).html());
        });
        $(".red_two").each(function () {
         //alert($(this).index());
         for(var i=0;i<redArr.length;i++){
         if(redArr[i]==($(this).index()+1)){
         $(this).css("background","red");
         }
         }
        });
    });
      

  4.   

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
     <html>
     <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>测试</title><meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
        <link rel="stylesheet" type="text/css" href="styles.css">
        --><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    var redArr=[];
        $(document).ready(function () {
        $(".red_one").each(function () {
        redArr.push($(this).html());
        });
        $(".red_two").each(function () {
         //alert($(this).index());
         for(var i=0;i<redArr.length;i++){
         if(redArr[i]==($(this).index()+1)){
         $(this).css("background","red");
         }
         }
        });
    });
    </script>
    </head><body>
        
        <br>    <table align="center" border="0" cellspacing="0" cellpadding="0">
            <tr>
                <td>
                    <table border="1" cellspacing="0" cellpadding="0">
                        <tr>
                            <td rowspan="2" height="18" width="72">期号</td>
                            <td colspan="6" height="18">红球</td>
                            <td rowspan="2" width="18" height="18">蓝球</td>
                        </tr>
                        <tr>
                            <td width="18" height="18">一</td>
                            <td width="18" height="18">二</td>
                            <td width="18" height="18">三</td>
                            <td width="18" height="18">四</td>
                            <td width="18" height="18">五</td>
                            <td width="18" height="18">六</td>
                        </tr>
                                <tr>
                                    <td width="18" height="18"></td>
                                    <td width="18" height="18" class="red_one">04</td>
                                    <td width="18" height="18" class="red_one">10</td>
                                    <td width="18" height="18" class="red_one">14</td>
                                    <td width="18" height="18" class="red_one">19</td>
                                    <td width="18" height="18" class="red_one">23</td>
                                    <td width="18" height="18" class="red_one">26</td>
                                    <td width="18" height="18">06</td>
                                </tr>
                    </table>
                </td>
                <td>
                    <table border="1" cellspacing="0" cellpadding="0">
                        <tr>
                            <td colspan="33" height="18">围红</td>
                            <td rowspan="2" width="18" height="18">验证</td>
                        </tr>
                        <tr>
                            <td width="18" height="18">01</td>
                            <td width="18" height="18">02</td>
                            <td width="18" height="18">03</td>
                            <td width="18" height="18">04</td>
                            <td width="18" height="18">05</td>
                            <td width="18" height="18">06</td>
                            <td width="18" height="18">07</td>
                            <td width="18" height="18">08</td>
                            <td width="18" height="18">09</td>
                            <td width="18" height="18">10</td>
                            <td width="18" height="18">11</td>
                            <td width="18" height="18">12</td>
                            <td width="18" height="18">13</td>
                            <td width="18" height="18">14</td>
                            <td width="18" height="18">15</td>
                            <td width="18" height="18">16</td>
                            <td width="18" height="18">17</td>
                            <td width="18" height="18">18</td>
                            <td width="18" height="18">19</td>
                            <td width="18" height="18">20</td>
                            <td width="18" height="18">21</td>
                            <td width="18" height="18">22</td>
                            <td width="18" height="18">23</td>
                            <td width="18" height="18">24</td>
                            <td width="18" height="18">25</td>
                            <td width="18" height="18">26</td>
                            <td width="18" height="18">27</td>
                            <td width="18" height="18">28</td>
                            <td width="18" height="18">29</td>
                            <td width="18" height="18">30</td>
                            <td width="18" height="18">31</td>
                            <td width="18" height="18">32</td>
                            <td width="18" height="18">33</td>
                        </tr>
                                <tr>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18" class="red_two"> </td>
                                    <td width="18" height="18"> </td>
                                </tr>
                    </table>
                </td>
            </tr>
        </table>
        <br></body>
    </html>
      

  5.   

    你一个页面显示100条数据啊? 用jstl 判断也可以的啊, 
      

  6.   

    你看看,这是我原来的JSP页面,
    因为想方便大家,我把动态数据,改成了固定的,
    你再给看看,请在我额这个代码中更改,谢谢<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://"
    + request.getServerName() + ":" + request.getServerPort()
    + path + "/";
    %><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <base href="<%=basePath%>"><title>综合图表——>大底围红(一)</title><meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
    <script type="text/javascript" src="js/jquery-1.10.1.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
    $("tr:gt(2)").each(function() {
    var tds = $(".red_one", this); $(".red_two", this).each(function() {
    var num = parseInt(this.innerHTML); if (tds[num - 1].innerHTML !== "")
    tds[num - 1].style.backgroundColor = "red"; });
    });
    });
    </script><style type="text/css">
    body table {
    border: 1px solid #666666;
    text-align: center;
    font-size: 14px;
    color: #FFFFFF;
    }body table tr,td {
    border: 1px solid #666666;
    height: 18px;
    }.red,.red_two {
    width: 18px;
    height: 18px;
    background-color: #D40000
    }.blue {
    width: 18px;
    height: 18px;
    background-color: #2A1FAA;
    }.yellow {
    width: 18px;
    height: 18px;
    background-color: #FF7F00;
    }
    </style></head><body>
    <!-- title -->
    <jsp:include page="/global/title.jsp"></jsp:include>
    <!-- logo -->
    <jsp:include page="/global/logo.jsp"></jsp:include>
    <!-- navigation -->
    <jsp:include page="/global/navigation.jsp"></jsp:include>
    <!-- roll -->
    <jsp:include page="/global/roll.jsp"></jsp:include> <br> <table align="center" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td>
    <table border="1" cellspacing="0" cellpadding="0">
    <tr>
    <td rowspan="2" height="18" width="72">期号</td>
    <td colspan="6" height="18">红球</td>
    <td rowspan="2" width="18" height="18">蓝球</td>
    </tr>
    <tr>
    <td width="18" height="18">一</td>
    <td width="18" height="18">二</td>
    <td width="18" height="18">三</td>
    <td width="18" height="18">四</td>
    <td width="18" height="18">五</td>
    <td width="18" height="18">六</td>
    </tr>
    <c:if test="${not empty bonusList }">
    <c:forEach items="${bonusList }" var="a">
    <tr>
    <td width="18" height="18">${a.issue }</td>
    <td width="18" height="18" class="red_one">${a.order_red_one }</td>
    <td width="18" height="18" class="red_one">${a.order_red_two }</td>
    <td width="18" height="18" class="red_one">${a.order_red_three }</td>
    <td width="18" height="18" class="red_one">${a.order_red_four }</td>
    <td width="18" height="18" class="red_one">${a.order_red_five }</td>
    <td width="18" height="18" class="red_one">${a.order_red_six }</td>
    <td width="18" height="18">${a.blue }</td>
    </tr>
    </c:forEach>
    </c:if>
    <tr>
    <td width="18" height="18"></td>
    <td width="18" height="18"></td>
    <td width="18" height="18"></td>
    <td width="18" height="18"></td>
    <td width="18" height="18"></td>
    <td width="18" height="18"></td>
    <td width="18" height="18"></td>
    <td width="18" height="18"></td>
    </tr>
    </table>
    </td>
    <td>
    <table border="1" cellspacing="0" cellpadding="0">
    <tr>
    <td colspan="33" height="18">围红</td>
    <td rowspan="2" width="18" height="18">验证</td>
    </tr>
    <tr>
    <td width="18" height="18">01</td>
    <td width="18" height="18">02</td>
    <td width="18" height="18">03</td>
    <td width="18" height="18">04</td>
    <td width="18" height="18">05</td>
    <td width="18" height="18">06</td>
    <td width="18" height="18">07</td>
    <td width="18" height="18">08</td>
    <td width="18" height="18">09</td>
    <td width="18" height="18">10</td>
    <td width="18" height="18">11</td>
    <td width="18" height="18">12</td>
    <td width="18" height="18">13</td>
    <td width="18" height="18">14</td>
    <td width="18" height="18">15</td>
    <td width="18" height="18">16</td>
    <td width="18" height="18">17</td>
    <td width="18" height="18">18</td>
    <td width="18" height="18">19</td>
    <td width="18" height="18">20</td>
    <td width="18" height="18">21</td>
    <td width="18" height="18">22</td>
    <td width="18" height="18">23</td>
    <td width="18" height="18">24</td>
    <td width="18" height="18">25</td>
    <td width="18" height="18">26</td>
    <td width="18" height="18">27</td>
    <td width="18" height="18">28</td>
    <td width="18" height="18">29</td>
    <td width="18" height="18">30</td>
    <td width="18" height="18">31</td>
    <td width="18" height="18">32</td>
    <td width="18" height="18">33</td>
    </tr>
    <c:if test="${not empty ddwhoneList }">
    <c:forEach items="${ddwhoneList }" var="a">
    <tr>
    <td width="18" height="18" class="red_two">${a.w_one }</td>
    <td width="18" height="18" class="red_two">${a.w_two }</td>
    <td width="18" height="18" class="red_two">${a.w_three }</td>
    <td width="18" height="18" class="red_two">${a.w_four}</td>
    <td width="18" height="18" class="red_two">${a.w_five}</td>
    <td width="18" height="18" class="red_two">${a.w_six}</td>
    <td width="18" height="18" class="red_two">${a.w_seven}</td>
    <td width="18" height="18" class="red_two">${a.w_eight}</td>
    <td width="18" height="18" class="red_two">${a.w_nine}</td>
    <td width="18" height="18" class="red_two">${a.w_ten}</td>
    <td width="18" height="18" class="red_two">${a.w_eleven}</td>
    <td width="18" height="18" class="red_two">${a.w_twelve}</td>
    <td width="18" height="18" class="red_two">${a.w_thirteen}</td>
    <td width="18" height="18" class="red_two">${a.w_fourteen}</td>
    <td width="18" height="18" class="red_two">${a.w_fifteen}</td>
    <td width="18" height="18" class="red_two">${a.w_sixteen}</td>
    <td width="18" height="18" class="red_two">${a.w_seventeen}</td>
    <td width="18" height="18" class="red_two">${a.w_eighteen}</td>
    <td width="18" height="18" class="red_two">${a.w_nineteen}</td>
    <td width="18" height="18" class="red_two">${a.w_twenty}</td>
    <td width="18" height="18" class="red_two">${a.w_twentyone}</td>
    <td width="18" height="18" class="red_two">${a.w_twentytwo}</td>
    <td width="18" height="18" class="red_two">${a.w_twentythree}</td>
    <td width="18" height="18" class="red_two">${a.w_twentyfour}</td>
    <td width="18" height="18" class="red_two">${a.w_twentyfive}</td>
    <td width="18" height="18" class="red_two">${a.w_twentysix}</td>
    <td width="18" height="18" class="red_two">${a.w_twentyseven}</td>
    <td width="18" height="18" class="red_two">${a.w_twentyeight}</td>
    <td width="18" height="18" class="red_two">${a.w_twentynine}</td>
    <td width="18" height="18" class="red_two">${a.w_thirty}</td>
    <td width="18" height="18" class="red_two">${a.w_thirtyone}</td>
    <td width="18" height="18" class="red_two">${a.w_thirtytwo}</td>
    <td width="18" height="18" class="red_two">${a.w_thirtythree}</td>
    <td width="18" height="18">${a.statistics}</td>
    </tr>
    </c:forEach>
    </c:if>
    </table>
    </td>
    </tr>
    </table>
    <br>
    <!-- footer -->
    <jsp:include page="/global/footer.jsp"></jsp:include></body>
    </html>
      

  7.   

    你那么多数据,上面的js出来不过来了。 你还是ajax 做吧。
      

  8.   

    写了个例子
    你之前的是判断循环是33*条数,假如有500条的话,当然是循环33*500次了...
    我写的是6*500,就相对少点循环了。我是把你的class改成动态的了,给个参考
    $(document).ready(function(){
    for(var i = 0;$(".red_one" + i).length!=0;i++){
    $(".red_one" + i).each(function(){
    var index = $(this).html();
    if(index.substring(0,1)=="0"){
    index = index.substring(1);
    }
    index = index * 1;
    $(".red_two" + i).eq(index-1).css("background","red");
    })
    }
    })
      

  9.   

    $('.red_one').each(function() {
        var indexs = $(this).closest('table').find('table').eq(1).find('tr').eq(1).find("td:contains($(this).html())").index();
      if($('.red_two').index() == indexs) $('.red_two').css('background-color', 'red');
    });
      

  10.   

    Quote: 引用 13 楼 zlamnz 的回复:

    写了个例子
    你之前的是判断循环是33*条数,假如有500条的话,当然是循环33*500次了...
    我写的是6*500,就相对少点循环了。我是把你的class改成动态的了,给个参考
    $(document).ready(function(){
    for(var i = 0;$(".red_one" + i).length!=0;i++){
    $(".red_one" + i).each(function(){
    var index = $(this).html();
    if(index.substring(0,1)=="0"){
    index = index.substring(1);
    }
    index = index * 1;
    $(".red_two" + i).eq(index-1).css("background","red");
    })
    }
    })[/quot]
    不好意思!还是不行
      

  11.   

    $('.red_one').each(function() {
        var indexs = $(this).closest('table').find('table').eq(1).find('tr').eq(1).find("td:contains($(this).html())").index();
      if($('.red_two').index() == indexs) $('.red_two').css('background-color', 'red');
    });
      

  12.   

    ind('table').eq(1).find('tr').eq(1).find("td:contains($(this).html())")closest.index[color=#FF99CC][/color]();
      if($('.red_two').index() == indexs) $('.red_two').css('background-color', 'red');
    });
      

  13.   

    $('.red_one').each(function() {
        var indexs = $(this).closest('table').find('table').eq(1).find('tr').eq(1).find("td:contains($(this).html())").index();
      $('.red_two').eq(indexs).css('background-color', 'red');
    });
      

  14.   

    我看了下其他的有些是ajax 的,但是你看这个速度好快哦。不知道是不是html拼好了。