2 Star 0 Fork 0

热门极速下载/Loki

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
explorer.html 942 Bytes
一键复制 编辑 原始数据 按行查看 历史
Bobby Cooke 提交于 2025-04-04 03:54 +08:00 . Public release
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>File Explorer</title>
<link rel="stylesheet" href="explorer.css">
</head>
<body>
<!-- <h2>Loki Green File Explorer</h2> -->
<div class="nav-container">
<button class="back-button" onclick="goBack()">⬅ Parent Dir</button>
<input type="text" id="dirPath" />
<button onclick="listFiles()">Browse</button>
</div>
<table>
<thead>
<tr>
<th onclick="sortTable(0)">Name 🔽</th>
<th onclick="sortTable(1)">Size (bytes) 🔽</th>
<th onclick="sortTable(2)">Type 🔽</th>
<th onclick="sortTable(3)">Last Modified 🔽</th>
</tr>
</thead>
<tbody id="fileList"></tbody>
</table>
<script src="explorer.js"></script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_trending/Loki.git
git@gitee.com:mirrors_trending/Loki.git
mirrors_trending
Loki
Loki
main

搜索帮助