20 lines
415 B
Plaintext
20 lines
415 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<div id="div_1"></div>
|
|
<script src="http://125.64.9.222:8022/public_libs/jquery.js"></script>
|
|
<script>
|
|
$.ajax({
|
|
url: "http://125.64.9.222:8022/public_libs/server_ajax_1.php",
|
|
type: "GET"
|
|
}).then(result=>{
|
|
$("#div_1").html(result);
|
|
})
|
|
|
|
</script>
|
|
</body>
|
|
</html> |