在 JQTouch 中加载单独的页面

发布于 2024-10-11 15:47:31 字数 193 浏览 1 评论 0原文

当我点击链接时,我试图加载新页面。 有可能实现吗?我尝试使用加载方法,但它不起作用,也许我做错了..

        $('.sinistros').click(function(){
            $(document).load('index.html');
        });

谢谢你

Im trying to load a new page when i click on a link.
Its possible to achieve that? i tried to use the load method but it doesnt work, maybe im doing it wrong..

        $('.sinistros').click(function(){
            $(document).load('index.html');
        });

Thank u

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

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

发布评论

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

评论(1

心凉 2024-10-18 15:47:31

jQuery .load() 函数不用于加载新文档或页面。它是一个事件侦听器,在元素加载时触发。基本上这就是说,监听点击,一旦点击,监听文档加载。 此处了解更多信息。

请尝试以下方法:

    $('.sinistros').click(function(){
        location.href = 'index.html';
    });

The jQuery .load() function is not used to load a new document or page. It is an event listener that fires when the element loads. Basically what this is saying is, listen for a click, and once they click, listen for the document to load. Read more on it here.

Try the following instead:

    $('.sinistros').click(function(){
        location.href = 'index.html';
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文