如何将php文件加载到网站上的特定位置?

时间:2014-05-28 12:19:36

标签: php jscript

我有包含的菜单和许多其他模块(左侧,右侧,内容等) 我想在链接点击时将一些PHP页面加载到特定的地方(内容)。

1 个答案:

答案 0 :(得分:-2)

点击按钮时使用Ajax,然后使用ajax响应中的php填充div。

function dispRecords()
        {   
            if (window.XMLHttpRequest)
            {
                // Create the object for browsers
                xmlhttp=new XMLHttpRequest();
            }
            else
            {
                // Create the object for browser versions prior to IE 7
                xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
            }
            xmlhttp.onreadystatechange=function()
            {
                // if server is ready with the response
                if (xmlhttp.readyState==4) 
                {
                    // if everything is Ok on browser
                    if(xmlhttp.status==200) 
                    {    
                        //Update the div with the response
                        document.getElementById("YOURDIV").innerHTML=xmlhttp.responseText;
                    }
                }
            }
            //send the selected option id to the php page 
            xmlhttp.open("GET","YOURPHP.php",true);
            xmlhttp.send();
        }