尝试在加载时加载页面而不是单击

发布于 2024-10-16 19:57:56 字数 723 浏览 2 评论 0原文

我正在使用这段代码:

$( document ).ready( function() {
    $( 'a.dynamicLoad' ).click( function( e ) {
        e.preventDefault();   // prevent the browser from following the link
        e.stopPropagation();  // prevent the browser from following the link

        $( '#MainWrapper' ).load( $( this ).attr( 'href' ) , function() {
            /* Content is now loaded */
            ThumbnailScroller("tsv_container","vertical",10,800,"easeOutCirc",0.4,500);
        });
    });
});

以及:

<li><a href="Help.html" class="dynamicLoad">HELP</a></li>

单击链接时加载页面。

我想知道如何添加到当前脚本,以便我可以在页面加载时加载页面,同时保持其原有的工作方式?我想加载一个名为“Homepage.html”的页面

I'm using this code:

$( document ).ready( function() {
    $( 'a.dynamicLoad' ).click( function( e ) {
        e.preventDefault();   // prevent the browser from following the link
        e.stopPropagation();  // prevent the browser from following the link

        $( '#MainWrapper' ).load( $( this ).attr( 'href' ) , function() {
            /* Content is now loaded */
            ThumbnailScroller("tsv_container","vertical",10,800,"easeOutCirc",0.4,500);
        });
    });
});

along with this:

<li><a href="Help.html" class="dynamicLoad">HELP</a></li>

To load pages when the link is clicked.

I would like to know how do I add to the current script so that I can load a page the minute the page loads up, while keeping it working the way it already is? I'd like to load a page named "Homepage.html"

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

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

发布评论

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

评论(1

萌面超妹 2024-10-23 19:57:58

这应该可以做到:

<script type="text/javascript">
jQuery(function() {
    jQuery('#MainWrapper').load('Homepage.html');
});
</script>

或者如果您仍然需要该回调:

<script type="text/javascript">
jQuery(function() {
    jQuery('#MainWrapper').load('Homepage.html', function() {
        ThumbnailScroller('tsv_container','vertical',10,800,'easeOutCirc',0.4,500);
    });
});
</script>

This should do it:

<script type="text/javascript">
jQuery(function() {
    jQuery('#MainWrapper').load('Homepage.html');
});
</script>

Or if you still need that callback:

<script type="text/javascript">
jQuery(function() {
    jQuery('#MainWrapper').load('Homepage.html', function() {
        ThumbnailScroller('tsv_container','vertical',10,800,'easeOutCirc',0.4,500);
    });
});
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文