#php がページにジャンプした後、ブラウザのアドレス バーのアドレスは変更されません。
JS を使用して実装する方法と、iframe を使用して実装する方法の 2 つがあります。
1. 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); } }
上記のコードは、ブラウザのアドレス バーのアドレスを実装するものです。ページジャンプ 方法は変わりません。
2. 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 中国語 Web サイトの他の関連記事を参照してください。