我正在编写以下代码来加载页面的一部分:
function load(b)
{
var xmlHttp;
try
{
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e)
{
alert("No AJAX!?");
return false;
}
}
}
xmlHttp.open("GET",b,true);
xmlHttp.onreadystatechange=function(){
if( this.readyState == 4 )
{
document.getElementById('main').innerHTML=xmlHttp.responseText;
}
}
xmlHttp.send(null);
}
//而调用代码的HTML是:
<a href="#" onclick="load('reg.php')">Item 3.1.1</a>
它有正确的结果。但在 url 中它是:localhost/corpo/#
而我期待:localhost/corpo/reg.php