Comment.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>微博评论爬虫</title>
  9. <link rel="stylesheet" href="bootstrap.min.css">
  10. <script src="jquery-1.9.1.js"></script>
  11. <script src="index.js"></script>
  12. </head>
  13. <body>
  14. <div class="container" style="max-width: 100%;">
  15. <!--style="margin-left: 10px;"-->
  16. <div class="form-inline" style="padding: 20px 0;">
  17. <div class="form-group">
  18. <label for="cookie">cookie</label>
  19. <input type="text" class="form-control" id="cookie" placeholder="输入cookie"
  20. style="margin-left: 10px; width: 350px;">
  21. </div>
  22. <div class="form-group" style="margin-left: 10px;">
  23. <label for="wbid">微博id</label>
  24. <input type="email" class="form-control" id="wbid" placeholder="输入微博id"
  25. style="margin-left: 10px; width: 350px;">
  26. </div>
  27. <div class="form-group" style="margin-left: 10px;">
  28. <label for="page">页面数</label>
  29. <input type="email" class="form-control" id="page" placeholder="输入页面数"
  30. style="margin-left: 10px; width: 350px;">
  31. </div>
  32. <button type="submit" class="btn btn-default" style="margin-left: 10px;" onclick="Search()">点击搜索</button>
  33. </div>
  34. </div>
  35. <div class="container" style="max-width: 100%;">
  36. <table class="table table-bordered"
  37. style="table-layout: fixed;word-break: break-all;word-wrap: break-word;">
  38. <thead>
  39. <tr>
  40. <th class="warning">用户名</th>
  41. <th>创建时间</th>
  42. <th>来源</th>
  43. <th>评论</th>
  44. <th>点赞数</th>
  45. </tr>
  46. </thead>
  47. <tbody id="warp" style="display: table-row-group;">
  48. <th colspan="5" scope="col" style="text-align: center;font-size: 24px;">暂无数据</th>
  49. </tbody>
  50. </table>
  51. </div>
  52. </body>
  53. </html>