按钮控制php页面包括

发布于 2024-12-08 02:03:29 字数 339 浏览 0 评论 0原文

因为考虑将 Google 广告嵌入到包含页面中。我放弃了jquery.loading

(谷歌不允许jquery ajax和jquery加载广告,现在甚至是iframe页面)

所以是否可以使用其他javascript方法用于控制 php 页面包括?

更多解释一下,如果我的页面需要包括 10 个页面,并且我不希望它们全部同时加载(同时加载速度很慢)。所以我放了10个按钮用于切换包含页面。

只需单击每个按钮,即可将所选包含页面加载到主页面。然后单击另一个,加载新的并隐藏第一个

because of considering embed google ads into include page. I am giving up jquery.loading

(google not allow jquery ajax and jquery loading for ads, now even iframe page)

so is it possible use other javascript method for control php page include?

more explain, if my page need to including 10 pages, and I do not want they all loading in same time(such slowly for loading at same time). So I put 10 buttons for switching include page.

only click each button, loading the chosen include page to main. and click another one, loading the new one and hidden the first one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

习ぎ惯性依靠 2024-12-15 02:03:29

只要它们是链接,谷歌就应该很好地抓取它们,你只需要在javascript中阻止链接被点击......

<a href="test.html" class="test">Test Page</a>

然后你的jquery......

$(document).ready(function(){
    $('a.test').click(function(e){

        // Load the AJAX here

        // Stop the click from actually going to the page
        e.preventDefault();
    });
});

As long as they are links google should crawl them fine, you just need to stop the link from being clicked on in javascript...

<a href="test.html" class="test">Test Page</a>

Then your jquery...

$(document).ready(function(){
    $('a.test').click(function(e){

        // Load the AJAX here

        // Stop the click from actually going to the page
        e.preventDefault();
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文