zoukankan      html  css  js  c++  java
  • jquery定义表格宽度

    <!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" xml:lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
        <title>Document</title>
        <script type="text/javascript" src="/Public/Js/jquery.min.js"></script>
    
    </head>
    <body>
    <script>
        $(document).ready(function() {
            var table_data = "59,137,183,217,317,114,100";
            if (table_data != ""){
                $(".finder_table th").each(function(i){
                    var thw = table_data.split(',')[i]==0?200:table_data.split(',')[i];
                    $(this).css("width",thw+"px");
                    $(this).html(thw);
                });
            }
        });
    </script>
    
    <style>
        table{height: 600px;color: #006600;border:solid 3px #d01d33; }
        th{border: 2px solid #d01d33;}
        td{border: 2px solid #d0d0d0;}
    </style>
    <table class="finder_table">
        <tbody>
        <tr>
            <th>1111</th>
            <th>2222</th>
            <th>3333</th>
            <th>4444</th>
            <th>5555</th>
            <th>6666</th>
        </tr>
        <tr>
            <td>td1</td>
            <td>td2</td>
            <td>td3</td>
            <td>td4</td>
            <td>td5</td>
            <td>td6</td>
        </tr>
        </tbody>
    </table>
    </body>
    </html>
  • 相关阅读:
    Java-对象数组排序
    aoj 0118 Property Distribution
    poj 3009 Curling 2.0
    poj 1979 Red and Black
    AtCoder Regular Contest E
    AtCoder Beginner Contest 102
    AtCoder Beginner Contest 104
    SoundHound Inc. Programming Contest 2018
    poj 3233 Matrix Power Series
    poj 3734 Blocks
  • 原文地址:https://www.cnblogs.com/walter371/p/4186392.html
Copyright © 2011-2022 走看看