forked from longlife/labplus-server
20 lines
495 B
HTML
20 lines
495 B
HTML
<!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> |