Initial commit
This commit is contained in:
23
blankFillingQ/textarea_student_answer_521_1
Normal file
23
blankFillingQ/textarea_student_answer_521_1
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>AJAX获取服务器时间</title>
|
||||
<script src="/public_libs/jquery.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="div_1"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$.ajax({
|
||||
url: "/public_libs/server_ajax_1.php",
|
||||
type: "GET",
|
||||
success: function(response) {
|
||||
$("#div_1").html(response);
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user