日期:2014-05-17 浏览次数:20989 次
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns:o="urn:schemas-microsoft-com:office:office" __expr-val-dir="ltr" lang="zh-cn" dir="ltr">
   
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>rowIndex</title>
    <style media="all" type="text/css">
    <!-- 
    body
    {
    margin: 0px;
    font-family: 宋体, MS Song;
    font-size: 9pt;
    color: windowtext;
    background: threedface;
    }
    div.Page_Load
    {
    margin-left: 40px;
    margin-top: 20px;
    }
    table.Main
    {
    border: 1px solid #A9A9A9;
    width: 400px;
    background-color: White;
    }table.Main tr
    {
    background-color: expression( (this.rowIndex%2==0) ? "#F7F7F7" : "#FFFFFF" );
    event:expression(
     onmouseover = function()
     {
     this.style.backgroundColor = ( this.style.backgroundColor != '#efefef' ? '#efefef' : ( (this.rowIndex % 2 == 0) ? "#F7F7F7" : "#FFFFFF") )
     },
     onmouseout = function()
     {
     this.style.backgroundColor = ( this.style.backgroundColor != '#efefef' ? '#efefef' : ( (this.rowIndex % 2 == 0) ? "#F7F7F7" : "#FFFFFF") )
     }
    )}table.Main tr td
    {
    text-indent: 1.2em;
    }-->
    </style>
    </head><body>
    <div class="Page_Load"><table class="Main">
    <tr>
    <td>1</td>
    </tr>
    <tr>
    <td>2</td>
    </tr>
    <tr>
    <td>3</td>
    </tr>
    <tr>
    <td>4</td>
    </tr>
    <tr>
    <td>5</td>
    </tr>
    <tr>
    <td>6</td>
    </tr>
    <tr>
    <td>7</td>
    </tr>
    <tr>
    <td>8</td>
    </tr>
    <tr>
    <td>9</td>
    </tr>
    </table></div>
    </body>
    </html>