时间:2021-07-01 10:21:17 帮助过:111人阅读
firbug ?firefox下要用 xml=new XMLHttpRequest();
if(window.XMLHttpRequest){ xml=new ActiveXObject("Microsoft.XMLHTTP");}else{ xml=new XMLHttpRequest();}xml.open("GET","http://xxx/test.asp",false);xml.send();
firbug ?firefox下要用 xml=new XMLHttpRequest();
if(window.XMLHttpRequest){ xml=new ActiveXObject("Microsoft.XMLHTTP");}else{ xml=new XMLHttpRequest();}xml.open("GET","http://xxx/test.asp",false);xml.send();
function GetLocalIPAdress(){ if(window.ActiveXObject) { xml=new ActiveXObject("Microsoft.XMLHTTP"); }else { xml=new XMLHttpRequest(); } xml.open("GET","http://iframe.ip138.com/ic.asp",false); xml.send(null); kk=xml.ResponseText; alert(kk); i=kk.indexOf("["); ie=kk.indexOf("]"); ip=kk.substring(i+1,ie); alert(ip); return ip;}
iframe.ip138.com不是你的域,不能跨域的
iframe.ip138.com不是你的域,不能跨域的
那我怎么能请求这个ip地址呢?
iframe.ip138.com不是你的域,不能跨域的
那我怎么能请求这个ip地址呢?