当单击其上的链接时,是否可以在另一页上显示2个或更多页面?我想知道当我点击要显示的页面的链接时,是否可以在另一页上显示两个或更多页面或该页面的内容。
答案 0 :(得分:1)
据我了解,请看这创建一个index.php
页面并设置:
<a href="new_page.php?page=first">First Page</a>
<a href="new_page.php?page=second">Second Page</a>
现在制作一个页面new_page.php
并在页面上方检查如下:
if(isset($_GET['page']) && $_GET['page'] == 'first'){
// Do anything that you want to display here
} else if( isset($_GET['page']) && $_GET['second'] ){
// Don anything that you want to dispaly here on
}
现在看到new_page.php
是单页,但我检查了$_GET[]
请求
并将该请求分成两个不同的页面,就像你想要花费这个页面一样多。
希望这有助于你......
答案 1 :(得分:0)
jquery:
试试这个:
<a href="javascript:show('page1.php')">First Page</a>
<a href="javascript:show('page2.php')">Second Page</a>
<div id="result"></div>
function show(page){
$('#result').html('').load(page);}