Initial commit
This commit is contained in:
1
blankFillingQ/textarea_student_answer_01
Normal file
1
blankFillingQ/textarea_student_answer_01
Normal file
@ -0,0 +1 @@
|
||||
ASP 解释型脚本 内容管理系统 FTP 80
|
5
blankFillingQ/textarea_student_answer_01_2.txt
Normal file
5
blankFillingQ/textarea_student_answer_01_2.txt
Normal file
@ -0,0 +1,5 @@
|
||||
新Spring应用的初始搭建以及开发过程
|
||||
注解和约定大于配置
|
||||
面向切面编程
|
||||
控制反转
|
||||
依赖注入
|
5
blankFillingQ/textarea_student_answer_01_2_e
Normal file
5
blankFillingQ/textarea_student_answer_01_2_e
Normal file
@ -0,0 +1,5 @@
|
||||
springboot
|
||||
XML
|
||||
面向切面编程
|
||||
控制反转
|
||||
依赖注入
|
5
blankFillingQ/textarea_student_answer_01_3.txt
Normal file
5
blankFillingQ/textarea_student_answer_01_3.txt
Normal file
@ -0,0 +1,5 @@
|
||||
@RequestMapping
|
||||
@SpringBootApplication
|
||||
@Controller
|
||||
@Service
|
||||
@Autowired
|
3
blankFillingQ/textarea_student_answer_01_3_e
Normal file
3
blankFillingQ/textarea_student_answer_01_3_e
Normal file
@ -0,0 +1,3 @@
|
||||
映射URL路径
|
||||
标识一个Java 类是一个控制器
|
||||
用于标识服务层组件
|
1
blankFillingQ/textarea_student_answer_02
Normal file
1
blankFillingQ/textarea_student_answer_02
Normal file
@ -0,0 +1 @@
|
||||
index.html 虚拟主机 获取对象 Math.random() js类库
|
5
blankFillingQ/textarea_student_answer_03.txt
Normal file
5
blankFillingQ/textarea_student_answer_03.txt
Normal file
@ -0,0 +1,5 @@
|
||||
JSP
|
||||
解释型脚本
|
||||
CMS
|
||||
21
|
||||
http
|
5
blankFillingQ/textarea_student_answer_04.txt
Normal file
5
blankFillingQ/textarea_student_answer_04.txt
Normal file
@ -0,0 +1,5 @@
|
||||
首页
|
||||
VPS
|
||||
document.getElementById("user_name")
|
||||
Date.getYear()
|
||||
ajax
|
20
blankFillingQ/textarea_student_answer_521.txt
Normal file
20
blankFillingQ/textarea_student_answer_521.txt
Normal file
@ -0,0 +1,20 @@
|
||||
<!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>
|
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>
|
103
blankFillingQ/textarea_student_answer_60_2_e
Normal file
103
blankFillingQ/textarea_student_answer_60_2_e
Normal file
@ -0,0 +1,103 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<form id="form_1">
|
||||
姓名:<input type="text" id="name" name="name" value="">
|
||||
<span id="span_name"></span><br>
|
||||
身份证:<input type="text" id="id" name="id" value="">
|
||||
<span id="span_id"></span><br>
|
||||
性别:<input type="radio" id="male" name="gender" value="1">男
|
||||
<input type="radio" id="female" name="gender" value="2">女
|
||||
<span id="span_gender"></span><br>
|
||||
家庭地址:<select id="province" name="province">
|
||||
<option value="510000000000">四川</option>
|
||||
<option value="130000000000">河北</option>
|
||||
<option value="530000000000">云南</option>
|
||||
</select>
|
||||
<span id="span_province"></span><br>
|
||||
<select id="city" name="city">
|
||||
<option checked value="510600000000">德阳</option>
|
||||
<option value="510700000000">绵阳</option>
|
||||
<option value="510100000000">成都</option>
|
||||
</select>
|
||||
<span id="span_city"></span><br>
|
||||
既往史:<input type="checkbox" id="hypertension" name="history" value="icd_01">高血压
|
||||
<input type="checkbox" id="diabetes" name="history" value="icd_02">糖尿病
|
||||
<input type="checkbox" id="psychosis" name="history" value="icd_03">精神病
|
||||
<span id="span_history"></span><br>
|
||||
<input type="button" id="ok" name="ok" value="ok" onclick="checkData()">
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
<script>
|
||||
function checkData()
|
||||
{
|
||||
var objName=document.getElementById("name");
|
||||
var objSpanName=document.getElementById("span_name");
|
||||
var objid=document.getElementById("id");
|
||||
var objSpan_id=document.getElementById("span_id");
|
||||
var objgender=document.getElementById("span_gender");
|
||||
var objcity=document.getElementById("span_city");
|
||||
var objhistory=document.getElementById("span_history");
|
||||
|
||||
var name1=objName.value;
|
||||
var id1=objid.value;
|
||||
var gender1=objgender.value;
|
||||
var city1=objcity.value;
|
||||
var history1=objhistory.value;
|
||||
var errorMessage_1="";
|
||||
var errorMessage_2="";
|
||||
var errorMessage_3="";
|
||||
var errorMessage_4="";
|
||||
|
||||
if(name1=="")
|
||||
{
|
||||
errorMessage_1="姓名不能为空";
|
||||
}
|
||||
else
|
||||
{
|
||||
errorMessage_1="";
|
||||
|
||||
}
|
||||
objSpanName.innerHTML=errorMessage_1;
|
||||
|
||||
|
||||
if(gender1!="1"||gender1!="2")
|
||||
{
|
||||
errorMessage_2="请选择性别";
|
||||
}
|
||||
else
|
||||
{
|
||||
errorMessage_2="";
|
||||
}
|
||||
objgender.innerHTML=errorMessage_2;
|
||||
if(city1!="dy")
|
||||
{
|
||||
errorMessage_3="请选择德阳";
|
||||
}
|
||||
else
|
||||
{
|
||||
errorMessage_3="";
|
||||
}
|
||||
|
||||
objcity.innerHTML=errorMessage_3;
|
||||
if(history1!="icd_01"&&history1!="icd_02"&&history1!="icd_03")
|
||||
{
|
||||
errorMessage_4="请选择至少一项疾病";
|
||||
}
|
||||
else
|
||||
{
|
||||
errorMessage_4="";
|
||||
}
|
||||
objhistory.innerHTML=errorMessage_4;
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
<html>
|
||||
|
||||
|
Reference in New Issue
Block a user