2 回答
TA贡献1833条经验 获得超4个赞
假设你有一个主页面index.php
内容如下
<script type="text/javascript" src="ajax.js"></script>
<a href="#" onclick="ygg('o')">o</a>
<div id="divID"></div>
这是ajax.js页面如下
var xmlHttp;
function $_xmlhttprequest(){
if(window.ActiveXObject){
xmlHttp= new ActiveXObject('Microsoft.XMLHTTP');
}else if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}
}
function ygg(url){
$_xmlhttprequest();
xmlHttp.open("GET","ygg.php?"+url,true);//通过该地址得到内容
xmlHttp.onreadystatechange=byphp;//准备 变量
xmlHttp.send(null);//发送
}
//方法
function byphp(){
if(xmlHttp.readyState==4){
var text1 = xmlHttp.responseText;
document.getElementById('divID').innerHTML = text1;
}
}
顺便说下,这里有个ygg.php是得到内容的,最简单的,你可以直接
<?php
echo $_GET[id];
?>
- 2 回答
- 0 关注
- 1258 浏览
添加回答
举报