@H_403_0@本文实例讲述了JS请求servlet的方法。分享给大家供大家参考,具体如下:
@H_403_0@
前端js代码:
<div class="jb51code">
<pre class="brush:js;">
//创建ajax请求对象
var xmlHttp;
function createXMLHttpRequest(){
if(window.ActiveXObject){
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}
}
/**
- 表单提交
*/
function submit(){
//发送请求
var searchContent = $id("search_input").value;//查找内容
createXMLHttpRequest();
try{
xmlHttp.onreadystatechange = handleStateChange;
xmlHttp.open("GET","/MyMap/QueryMapServlet?searchName="+searchContent,true);
xmlHttp.send(null);
}catch(exception){
alert("您要访问的资源不存在!");
}
$("sideToggleRight").attr("checked","checked");//无作用
}
//处理结果
function handleStateChange(){
if(xmlHttp.readyState == 4){
if (xmlHttp.status == 200 || xmlHttp.status == 0){
var t = xmlHttp.responseText;
jsonobj = eval('('+t+')');
}
}
}