php跳轉頁面後,瀏覽器網址列位址維持不變。
有兩個方法,一個使用JS實現,一個是用iframe實作。
一、JS實作
程式碼如下:
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); } }
上面的程式碼就是實作頁面跳轉後,瀏覽器網址列位址保持不變的方法。
二、iframe框架
<iframe id="frame3d" name="frame3d" frameborder="0" width="100%" scrolling="auto" style="margin-top: -4px;" onload="this.style.height=document.body.clientHeight-84" height="100%" src="http://www.5202m.com" mce_src="http://www.baidu.com"> </iframe>
注意:存在跨網域存取的問題,推薦後台使用,前台對搜尋引擎不友好,不利於優化。
推薦教學:PHP影片教學
#以上是php跳躍頁面url不變的詳細內容。更多資訊請關注PHP中文網其他相關文章!