WBAccount.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>Page Title</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="stylesheet" href="../css/WBAccount.css">
  9. </head>
  10. <body>
  11. <button onclick="show('.insertDiv')"> 添加</button>
  12. <div class="tb">
  13. <table class="table table-border table-bordered table-bg"
  14. style="width: 100%;word-break: break-all;word-wrap: break-word;">
  15. <thead>
  16. <tr class="text-c">
  17. <th>微博号</th>
  18. <th>微博名称</th>
  19. <th>加入时间</th>
  20. <th>操作</th>
  21. </tr>
  22. </thead>
  23. <tbody id="warp">
  24. </tbody>
  25. </table>
  26. </div>
  27. <div class="insertDiv">
  28. <div class="header">
  29. <span>添加详情</span>
  30. <div style="cursor: pointer;" onclick="show('.insertDiv')">×</div>
  31. </div>
  32. <div class="info">
  33. <p><label for="">微博号:</label><input type="text" class="wbNum" placeholder="请填写微博号"/></p>
  34. <p><label for="">微博名称:</label><input type="text" class="wbName" placeholder="请填写微博名称"/></p>
  35. </div>
  36. <button onclick="insert();">确定</button>
  37. </div>
  38. <div class="updateDiv">
  39. <div class="header">
  40. <span>编辑详情</span>
  41. <div style="cursor: pointer;" onclick="show('.updateDiv')">×</div>
  42. </div>
  43. <div class="info">
  44. <p><label for="">微博名称:</label><input type="text" class="newName" placeholder="请填写要修改的微博名称"/></p>
  45. </div>
  46. <button class="update">确定</button>
  47. </div>
  48. </body>
  49. </html>
  50. <script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
  51. <script src="../js/WBAccount.js"></script>