ページの一部をロードするために、次のコードを記述しています。
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