最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to pre-load (cache) an external page in jquery before redirecting to it? - Stack Overflow

programmeradmin1浏览0评论

I am doing a phonegap app. I have an index.html page with a sign-in button that redirects to the website app.

When sign-in button was clicked, I wanted to have a loading gif to show while the page is being cached/pre-loaded and redirect to the page when its done.

I would appreciate a sample script code.

I am doing a phonegap app. I have an index.html page with a sign-in button that redirects to the website app.

When sign-in button was clicked, I wanted to have a loading gif to show while the page is being cached/pre-loaded and redirect to the page when its done.

I would appreciate a sample script code.

Share Improve this question edited Jun 9, 2014 at 2:10 h3n asked May 30, 2014 at 1:05 h3nh3n 5,2489 gold badges50 silver badges77 bronze badges 2
  • Can you clarify? You want the code to show the pre-loader gif or the code to pre-load a web page? – Veera Commented Jun 8, 2014 at 14:03
  • I just changed "pre-loader gif" to "loading gif". I want to show the gif while pre-loading the page. – h3n Commented Jun 9, 2014 at 2:11
Add a ment  | 

3 Answers 3

Reset to default 5

I'm not even sure you need to use any jQuery or Javascript unless you want to dynamically take care of many cases like this. You can look into HTML5 prefetch to preload and cache the next page after login. So in the head of your document add:

<link rel="prefetch" href="http://example-site/next_page_after_login.html" />

You can read more about this on David Walsh blog here, or read more on MDN prefetch MDN

I acplished a similar task using <iframe> elements. My phonegap app needed to load (local) pages, possibly modifying them via jQuery. Using plain redirects (via window.location) caused loading artifacts for two reasons:

  1. images appeared as they were being loaded
  2. the page state before jQuery modifications momentarily flashed.

I solved this problem by loading the page in a non-visible <iframe>, and making the <iframe> visible only after it had loaded and modifications had been made via jQuery. I supposed there are various ways to do this, but I did it by "juggling" <iframe> elements via their z-index.

I have created an annotated fiddle that is slightly simpler and adds a loading spinner:

http://jsfiddle/Leftium/L2HdV/ (Hat tip to Umidbek for the spinner!):

jQuery(document).ready(function ($) {
    $app = $('.app');

    // Attach behavior to Login button.
    $('.login').on('click', function () {
        $app.addClass('loading');

        // Create an <iframe>.
        $iframe = $('<iframe>');

        // Set url of <iframe> to desired redirect URL.
        // Note: the URL must be in the same domain,
        // or set special HTTP headers to allow rendering inside an <iframe>.
        $iframe.attr({src: 'http://doc.jsfiddle/'});

        // Add <iframe> we just created to DOM.
        $iframe.appendTo($('body'));

        // When <iframe> has been loaded, remove <div> containing login button
        // and loading spinner to reveal <iframe>.
        $iframe.load(function() {
            $('.app').remove()
        });
    });
});

This is very simple example:

http://jsfiddle/umidbek_karimov/DQ2wn/

Use css classes to manipulate visibility of the loader div and switch between pages.

jQuery(document).ready(function ($) {
    $app = $('.app'),
    $pages = $('.page');

    $('.login').on('click', function () {
        $app.addClass('loading');

        $pages.removeClass('active').filter('.page-2').addClass('active');

        setTimeout(function () {
            $app.removeClass('loading');
        }, 500);
    });

    $('.logout').on('click', function () {
        $app.addClass('loading');

        $pages.removeClass('active').filter('.page-1').addClass('active');

        setTimeout(function () {
            $app.removeClass('loading');
        }, 500);
    });

    $app.removeClass('loading');
});

But if you need more plicated solution it's better to use some js frameworks, Knockout.js + some js router, or more powerful Angular.JS

发布评论

评论列表(0)

  1. 暂无评论