如何实现js调用java函数
1个回答
展开全部
var xmlHttp; //创建XMLHttpRequest对象 function createXMLHttpRequest(){ if(window.ActiveXObject){ xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } else if(window.XMLHttpRequest){ xmlHttp = new XMLHttpRequest(); } } function startRequest(){ createXMLHttpRequest(); try{ xmlHttp.onreadystatechange = handleStateChange; xmlHttp.open("GET", "xxxxxxx.action",true); xmlHttp.send(null); }catch(exception){ alert(exception.message); } } function handleStateChange(){ if(xmlHttp.readyState == 4){ if (xmlHttp.status == 200 || xmlHttp.status == 0){ // 取得返回字符串 var resp = xmlHttp.responseText; // 然后可以把resp构造返回JSON对象或者XML对象 } }}JS中调用 startRequest()方法,handleStateChange()方法中获得JAVA类的返回数据
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询