AJAX全接触课程服务器的问题

http://img.mukewang.com/57b5452b0001f45e13620488.jpg

<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>


夜月见黑
浏览 1189回答 1
1回答

去看天荒地老

你要先安装服务器啊,推荐wamp。安装后用本地localhost打开啊
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript