我在点击该 URL 时有一个 HTTP URL,我在浏览器中收到 START=ST|URL=NHNG|URLC= 的响应。我尝试在 javascript 中点击并捕捉响应。但无法使用 Ajax 来实现。responseXML 和文本返回为空。我的目标是点击 URL 并将响应标记为不同的字符串,例如 St,NHNG 和https://www.google.com。并进一步使用它们
请建议继续进行。在此先感谢。我遇到的 url 不能被防火墙访问。所以无法提供 url。但是在浏览器中,我们在点击 url 时得到了上面指定的响应我使用的当前代码是`
function state_Change(){
if (xmlhttp.readyState==4){
if (xmlhttp.status==200){
alert("Before");
// document.getElementById("cnu").innerHTML = "nnnn";
res= xmlhttp.responseText;
alert(res);
// ...our code here...
}else{
alert("Problem retrieving data");
}}
}
function loadXMLDoc(url)
{
alert("Ajax");
xmlhttp=null;
if (window.XMLHttpRequest)
{// code for all new browsers
xmlhttp=new XMLHttpRequest();
}
else if (window.ActiveXObject)
{// code for IE5 and IE6
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlhttp!=null)
{
xmlhttp.onreadystatechange=state_Change;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}
else
{
alert("Your browser does not support XMLHTTP.");
}
}
`