ajax를 통해 웹 페이지의 다른 링크를 클릭한 후 반환된 결과를 페이지의 고정 p에 표시합니다
/* 다음 코드는 웹 페이지의 다른 링크를 클릭한 후 반환된 결과를 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 비동기 페이징을 구현하기위한 여러 매개 변수를 전달하기위한 사용자 이름 및 비밀번호를 확인하기위한 코드
위 내용은 Ajax는 특정 div에 반환된 콘텐츠를 표시하기 위해 다양한 링크를 클릭하는 것을 구현합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!