<body>
<p>UID:1001</p>
<!-- 1. 引入 highlight.js (和之前一样) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/vs2015.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/json.min.js"></script>
<style>
pre code.hljs {
padding: 1.2em;
border-radius: 8px;
font-family: Consolas, 'Courier New', monospace;
font-size: 14px;
line-height: 1.5;
background: #1e1e1e;
color: #d4d4d4;
}
</style>
<pre><code id="json-code" class="language-json"></code></pre>
<script>
// ----------------------- 你的 JSON 数据在这里 -----------------------
const rawJson = {"reg_time": "1763203173", "status": "1", "login_time": "1769048455", "uid": 1001};
// 格式化 + 放入
const formatted = JSON.stringify(rawJson, null, 2);
document.getElementById("json-code").textContent = formatted;
// 最后高亮
hljs.highlightElement(document.getElementById("json-code"));
</script>
</body>