thinkphp Tpl/User/index.html 用户首页模版

<html>
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
        <title>Index</title>
        <script>
            function jump(){
                window.location="/thinkphp/index.php/User/add";
            }
        </script>
    </head>
    <body>
        <table border='1' width="500" align='center'>
            <tr>
                <th>id</th>
                <th>username</th>
                <th>sex</th>
                <th>操作</th>
            </tr>
            <volist name='data' id='vo'>
                <tr>
                    <td><{$vo.id}></td>
                    <td><{$vo.username}></td>
                    <td><{$vo.sex}></td>
                    <td><a href="/thinkphp/index.php/User/del/id/<{$vo.id}>">删除</a> | <a href="/thinkphp/index.php/User/modify/id/<{$vo.id}>">修改</a></td>
                </tr>
            </volist>
        </table>
        <center>
            <button onclick="jump()">添加用户</button>
        </center>
    </body>
</html>

你可能感兴趣的:(thinkphp Tpl/User/index.html 用户首页模版)