我有一个.htacess,现在在这个页面上完美运行:
http://www.lebmotors.com/new/pror我有一个ajax分页文件prorajax.php
点击它就会转到index.php
$ pag1-> setContainerPage( “http://www.lebmotors.com/new/prorajax”);这转为ajax链接,但点击它到达主页index.php而不是
这是由分页类
生成的链接 <a href='#' onclick='Submit_To_Ajax(\"$curentpage?xc=8&page=1$queriess\");'>
<< </a>
This is the ajax function:
function Submit_To_Ajax(page)
{
xmlHttp = AjaxHttpObject();
if (xmlHttp==null)
{
alert("Your browser does not support AJAX !!!");
return;
}
else
{
}
xmlHttp.open("GET", page, true);
xmlHttp.onreadystatechange=StateChanged;
xmlHttp.send(null);
}
function StateChanged() {
if (xmlHttp.readyState == 4)
{
document.getElementById('AjaxDiv').innerHTML=xmlHttp.responseText;
}
else
{
document.getElementById('AjaxDiv').innerHTML='<img src="img/loading.jpg">';
}
}
答案 0 :(得分:0)
已解决这是pagination.inc.php中的原因 href =“#”删除此功能解决了问题