解决打开页面时不加载首页文件,不点击按钮链接,页面为空白的问题。 <?php if(isstet($_GET[‘id‘])){ //判断文字链接是否存在 switch($_GET[‘id‘]){ case"0": include("home.html"); break; case"1": include("example.html"); break; case"2": include("page.html"); break; } }else{ include("home.html"); //如果不存在加载首页文件 } ?>
时间: 2024-09-30 03:31:18