1 Star 0 Fork 0

Eugene/go-demos

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
newsaggtemplate.html 816 Bytes
一键复制 编辑 原始数据 按行查看 历史
guoyj 提交于 2023-09-22 17:11 +08:00 . update
<head>
<link rel="stylesheet" href="//cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css"/>
<script src="https://code.jquery.com/jquery-3.7.1.slim.js"
integrity="sha256-UgvvN8vBkgO0luPSUl2s8TIlOSYRoGFAX4jlCIm9Adc=" crossorigin="anonymous"></script>
<script src="//cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>
</head>
<h1>{{ .Title }}</h1>
<table id="myTable">
<thead>
<th>Title</th>
<th>Description</th>
</thead>
<tbody>
{{ range $key, $value := .NewsInfo }}
<tr>
<td><a target="_blank" href="{{ $value.Link }}">{{ $key }}</a></td>
<td>{{ $value.Description }}</td>
</tr>
{{ end }}
</tbody>
</table>
<script>
$(document).ready(function () {
let table = new DataTable('#myTable')
})
</script>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/egu0/go-demos.git
git@gitee.com:egu0/go-demos.git
egu0
go-demos
go-demos
main

搜索帮助