| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport"
- content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>微博评论爬虫</title>
- <link rel="stylesheet" href="bootstrap.min.css">
- <script src="jquery-1.9.1.js"></script>
- <script src="index.js"></script>
- </head>
- <body>
- <div class="container" style="max-width: 100%;">
- <!--style="margin-left: 10px;"-->
- <div class="form-inline" style="padding: 20px 0;">
- <div class="form-group">
- <label for="cookie">cookie</label>
- <input type="text" class="form-control" id="cookie" placeholder="输入cookie"
- style="margin-left: 10px; width: 350px;">
- </div>
- <div class="form-group" style="margin-left: 10px;">
- <label for="wbid">微博id</label>
- <input type="email" class="form-control" id="wbid" placeholder="输入微博id"
- style="margin-left: 10px; width: 350px;">
- </div>
- <div class="form-group" style="margin-left: 10px;">
- <label for="page">页面数</label>
- <input type="email" class="form-control" id="page" placeholder="输入页面数"
- style="margin-left: 10px; width: 350px;">
- </div>
- <button type="submit" class="btn btn-default" style="margin-left: 10px;" onclick="Search()">点击搜索</button>
- </div>
- </div>
- <div class="container" style="max-width: 100%;">
- <table class="table table-bordered"
- style="table-layout: fixed;word-break: break-all;word-wrap: break-word;">
- <thead>
- <tr>
- <th class="warning">用户名</th>
- <th>创建时间</th>
- <th>来源</th>
- <th>评论</th>
- <th>点赞数</th>
- </tr>
- </thead>
- <tbody id="warp" style="display: table-row-group;">
- <th colspan="5" scope="col" style="text-align: center;font-size: 24px;">暂无数据</th>
- </tbody>
- </table>
- </div>
- </body>
- </html>
|