<h1>员工查询</h1>
<label for="keyword">输入员工编号:</label>
<input type="text" id="keyword" /><br />
<input type="button" id="search" value="查询"/>
<p id="searchResult"></p>
<h1>员工创建</h1>
<label for="staffName">输入员工姓名:</label>
<input type="text" id="staffName" /><br />
<label for="staffNum">输入员工编号:</label>
<input type="text" id="staffNum" /><br />
<label for="staffSex">输入员工性别:</label>
<select id="staffSex">
<option>男</option>
<option>女</option>
</select><br />
<label for="staffJob">输入员工职位:</label>
<input type="text" id="staffJob" /><br />
<input type="button" value="创建" />
<p id="createResult"></p>
<script>
document.getElementById("search").onclick=function(){
var request = new XMLHttpRequest();
request.open("GET","server.php?number=" +document.getElementById("keyword").value);
request.send();
}
</script>
去看天荒地老
相关分类