• /*使用PHP创建一个数组,保存5個员工的信息(ename/sex/salary/birthday/pic)*/


    <?php
    /*使用PHP创建一个数组,保存5個员工的信息(ename/sex/salary/birthday/pic)*/
    $empList=[
        ['ename'=>'张学友','sex'=>'男','salary'=>200,'birthday'=>12354215451215,'pic'=>'img/1.jpg'],
        ['ename'=>'张启山','sex'=>'男','salary'=>12000,'birthday'=>12354215451215,'pic'=>'img/1.jpg'],
        ['ename'=>'张乌鸡','sex'=>'男','salary'=>8880,'birthday'=>12354215451215,'pic'=>'img/1.jpg'],
        ['ename'=>'张韶涵','sex'=>'女','salary'=>4000,'birthday'=>12354215451215,'pic'=>'img/1.jpg'],
        ['ename'=>'张天师','sex'=>'男','salary'=>123256,'birthday'=>12354215451215,'pic'=>'img/1.jpg']
    ];
    ?>
    <table>
        <tbody>
          <?php
            for($i=0; $i<count($empList);$i++){  //count()函数计算$empList里面的个数
                $e=$empList[$i];
                echo "<tr>";
                echo "<td>$e[ename]</td>";
                echo "<td>$e[sex]</td>";
                echo "<td>$$e[salary]</td>";
                echo "<td>$e[birthday]</td>";
                echo "<td>$e[pic]</td>";
                echo "</tr>";
            }
            ?>
        </tbody>
    </table>
    <script>
        //输出queryselectorall()获取文档中指定元素的nth上到下顺序第四个td元素取值;
        var td_03=document.querySelectorAll('td:nth-child(4)');
        console.log(td_03);
        for(var i=0; i<td_03.length;i++){   //遍历td_03
            var td=td_03[i];     //获取当期遍历元素,赋值给td;
            var num=parseInt(td.innerHTML);    //把td在页面显示为整数类型添加到num中
            var d=new Date();   //获取当前时间
            td.innerHTML= d.getFullYear()+'-'+(d.getMonth()+1)+'-'+ d.getDate();
            //在页面显示时间格式
        }
    </script>

  • 相关阅读:
    【剑指offer】数组中重复的数字
    【剑指offer】数组中只出现一次的数字
    【linux】进程存储管理
    【linux】gdb调试
    【C/C++】快速排序的两种实现思路
    【C/C++】知识点
    【计算机网络】知识点记录
    【hadoop】mapreduce原理总结
    基于社交网络的情绪化分析IV
    Android studio 升级,不用下载完整版,完美更新到2.0
  • 原文地址:https://www.cnblogs.com/longly/p/6048603.html
Copyright © 2020-2023  润新知