Files
labplus-server/index.html

20 lines
495 B
HTML
Raw Permalink Normal View History

2024-02-17 19:47:52 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://libs.cdnjs.net/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(() => {
$.getJSON('/ten', (data) => {
$('#content').text(JSON.stringify(data));
})
})
</script>
</head>
<body>
<div id="content"></div>
</body>
</html>