页面跳转后,是浏览器地址栏不变

页面跳转后,是浏览器地址栏不变

iframe跳转 、 js页面跳转 ---- 跳转地址栏不变


  /*《js 代码》 url地址栏保持地址不被暴露 */
  function createXMLHttpRequest(){
    if(window.XMLHttpRequest){
        XMLHttpR = new XMLHttpRequest();
    }else if(window.ActiveXObject){
        try{
            XMLHttpR = new ActiveXObject("Msxml2.XMLHTTP");
        }catch(e){
            try{
                XMLHttpR = new ActiveXObject("Microsoft.XMLHTTP");
            }catch(e){
            }
        }
    }
  }
  function sendRequest(url){
    createXMLHttpRequest();
    XMLHttpR.open("GET",url,true);
    XMLHttpR.setRequestHeader("Content-Type","text/html;charset=utf-8");
    XMLHttpR.onreadystatechange = processResponse;
    XMLHttpR.send(null);
  }
  function processResponse(){
    if(XMLHttpR.readyState ==4 && XMLHttpR.status == 200){
        document.write(XMLHttpR.responseText);
    }
  }
  
  /* url地址栏保持地址不被暴露 */
  
  

原文地址查看 http://blog.sina.com.cn/s/blog_74f702e601013t0i.html

你可能感兴趣的:(前端)