123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>Page Title</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="../css/WBAccount.css">
- </head>
- <body>
- <button onclick="show('.insertDiv')"> 添加</button>
- <div class="tb">
- <table class="table table-border table-bordered table-bg"
- style="width: 100%;word-break: break-all;word-wrap: break-word;">
- <thead>
- <tr class="text-c">
- <th>微博号</th>
- <th>微博名称</th>
- <th>加入时间</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody id="warp">
- </tbody>
- </table>
- </div>
- <div class="insertDiv">
- <div class="header">
- <span>添加详情</span>
- <div style="cursor: pointer;" onclick="show('.insertDiv')">×</div>
- </div>
- <div class="info">
- <p><label for="">微博号:</label><input type="text" class="wbNum" placeholder="请填写微博号"/></p>
- <p><label for="">微博名称:</label><input type="text" class="wbName" placeholder="请填写微博名称"/></p>
- </div>
- <button onclick="insert();">确定</button>
- </div>
- <div class="updateDiv">
- <div class="header">
- <span>编辑详情</span>
- <div style="cursor: pointer;" onclick="show('.updateDiv')">×</div>
- </div>
- <div class="info">
- <p><label for="">微博名称:</label><input type="text" class="newName" placeholder="请填写要修改的微博名称"/></p>
- </div>
- <button class="update">确定</button>
- </div>
- </body>
- </html>
- <script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
- <script src="../js/WBAccount.js"></script>
|