0

我正在使用 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');
        }
4

1 回答 1

3

这就是我所做的。用 id "fadein" 在我的 PHP 代码周围包裹了一个 div,然后使用了这个 jquery 代码:

$(function(){
            $('#fadein').hide();
            $('#fadein').fadeIn();

        });

简单的

于 2012-12-03T16:08:04.903 回答