ホームページ > 記事 > ウェブフロントエンド > Ajax は、さまざまなリンクをクリックして、返されたコンテンツを特定の div に表示するように実装します。
Ajax を通じて Web ページ上のさまざまなリンクをクリックし、返された結果をページの固定 p に表示します
/* 次のコードは、Web ページ上のさまざまなリンクをクリックして、返された結果を表示するために Ajax を通じて実装されていますこのページで修正された p で。 */
<html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <script language="javascript"> var http_request = false; function createRequest(url,objID){ http_request = false; if(window.XMLHttpRequest){ //非IE浏览器 http_request = new XMLHttpRequest(); if(http_request.overrideMimeType){ http_request.overrideMimeType("text/xml"); } }else if(window.ActiveXObject){ //IE浏览器 try{ http_request = new ActiveXObject("Msxml2.XMLHTTP"); }catch(e){ try{ http_request = new ActiveXObject("Microsoft.XMLHTTP"); }catch(e){} } } if(!http_request){ alert("无法创建XMLHTTP实例"); return false; } http_request.open("GET",url,true); http_request.send(null); var obj = document.getElementById(objID); http_request.onreadystatechange = function(){ if(http_request.readyState == 4){ if(http_request.status == 200){ obj.innerHTML = http_request.responseText; }else{ alert('您请求的页面发现错误!'); } } } } </script> </head> <body onload="createRequest('content1.html','show')"> <p align="center"> <a href="content1.html" onclick="createRequest('content1.html','show');return false;">no1</a> | <a href="content2.html" onclick="createRequest('content2.html','show');return false;">no2</a> | <a href="content3.html" onclick="createRequest('content3.html','show');return false;">no3</a> </p> <p id="show" align="center"></p> </body> </html>
以上、皆様のお役に立てれば幸いです。
関連記事:
ユーザー名とパスワードを検証するための Ajax サンプル コード
Ajax 非同期ページングを実装するためのlaypage フロントエンド ページング プラグイン
以上がAjax は、さまざまなリンクをクリックして、返されたコンテンツを特定の div に表示するように実装します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。