0

代码没有显示我的 PHP 元素,我想知道为什么。

这是我正在使用的 HTML:

<div class="tablocation">

    <ul class="css-tabs">
      <li><a class="current" href="/wp-content/themes/blue-and-grey/uni-general.php">General</a></li>
      <li><a href="/wp-content/themes/blue-and-grey/uni-courses.htm">Courses</a></li>
      <li><a href="/wp-content/themes/blue-and-grey/uni-inthearea.htm">In the area</a></li>
      <li><a href="/wp-content/themes/blue-and-grey/uni-sportsandfacilities.htm">Sports & facilities</a></li>
    </ul>

    <div class="clear"></div>

    <div class="css-panes">
      <div style="display:block"></div>
    </div>  

以第一个实例为例,对于 uni-general.php - 它不会加载,但.htm的其他文件将加载。只要它是 PHP 文档,它就不会。

另外 - 下面是我用来加载文档的脚本。

<script>
    $(function() {
        $("ul.css-tabs").tabs("div.css-panes > div", {
        effect: 'ajax',
        onBeforeClick: function(event, i) {
        // get the pane to be opened
        var pane = this.getPanes().eq(i);

            // only load once. remove the if ( ... ){ } clause if
            // you want the page to be loaded every time
        if (pane.is(":empty")) {
            // load it with a page specified in the tab's href
            // attribute
            pane.load(this.getTabs().eq(i).attr("href"));
        }
        }
    });
    });
</script>

如果需要,我可以提供 PHP 文档,但公平地说,我认为这不是问题所在。

4

1 回答 1

0

从标准插件功能看不太自定义。

只需加载您的标签$("ul.css-tabs").tabs();

使用 jQuery UI,无论你有什么都href将通过选项卡中的 ajax 加载。

*Fetch external content via Ajax for the tabs by setting an href value in the tab links.*

http://jqueryui.com/demos/tabs/#ajax

于 2012-07-07T12:14:27.207 回答