我正在使用 php 在我的页面中动态加载内容。我想添加一个很好的效果,比如用 jquery 淡入。
但是如果用户关闭了javascript,我希望我的页面仍然有效。
这是我加载内容的 php 代码:
/// load page content
$pages_dir = 'content';
if(!empty($_GET['p'])) {
$pages = scandir($pages_dir, 0);
//delete . and ..
unset($pages[0], $pages[1]);
$p = $_GET['p'];
// only files that are in the array can be loaded
if (in_array($p. '.php', $pages)) {
include($pages_dir. '/'.$p. '.php');
} else {
echo 'This page is not available';
}
} else {
include($pages_dir. '/index.php');
}