| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="../css/init.css" />
- <title>微博列表</title>
- <style>
- .treeTable {
- height: 400px;
- /*overflow-y: auto;*/
- }
- .content {
- width: 270px;
- height: 100%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- text-align: left;
- cursor: pointer;
- }
- .mytable {
- table-layout: fixed;
- }
- .mytable tbody tr td {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- </style>
- </head>
- <body class="gray-bg">
- <div class="container-fluid wrapper-content animated fadeInRight">
- <div class="daoHang clearfix">
- <div class="dhLeft">
- <sapn><i class="syIcon"></i>位置:<a id="ReIndex">首页</a>><a href="javaScript:;">网站后台</a>><a href="" class="nowPosition">微博列表</a></sapn>
- </div>
- <div class="dhRight"><a href="" title="刷新"><i class="fa fa-refresh"></i></a></div>
- </div>
- <div class="treeTable clearfix">
- <div class="tableCon">
- <table id="table1" class="mytable table-bordered" data-row-style="rowStyle" data-query-params="queryParams" data-pagination="true">
- <thead>
- <tr>
- <th data-field="W_Id" data-align="center" data-width="16%">微博ID</th>
- <th data-field="W_Text" data-align="left" data-width="30%">微博信息</th>
- <th data-field="W_Source" data-align="center" data-width="10%">关联</th>
- <th data-field="W_Name" data-align="center" data-width="20%">发布人</th>
- <th data-field="W_Created_at" data-align="center" data-width="14%">发布时间</th>
- <th data-align="center" data-formatter="detail" data-width="10%">操作</th>
- <!--data-field="W_Url"-->
- </tr>
- </thead>
- <tbody id="tbody"></tbody>
- </table>
- </div>
- </div>
- 提示:<BR />
- 1、此接口最多只返回最新的5条数据。参考网址:http://open.weibo.com/wiki/2/comments/show <br />
- 2、接口访问频次权限。参考网址:http://open.t.sina.com.cn/wiki/index.php/Rate-limiting?retcode=0
- </div>
- <script src="../css/layer/layer.js"></script>
- <script src="../js/weiBo.js"></script>
- </body>
- </html>
|