javascript – 预加载iframe

        function toggle(){
            $("#tempc").toggle(
                function () {
                    $("#tempc").animate({width: 255, height: 220}, 1000);
                    $("#tempc").html("");
                    $("#tempc").css("background-color", "transparent");
                    $("#tempc").html("<iframe src='/src/stream.php?stream=1' width='255' height='225' frameborder='0' scrolling='no'></iframe><br><a href='javascript:;' onclick='hidegadget();' class='yellowblock'>Sluit</a>");
                },
                function () {
                    $("#tempc").animate({width: 50, height:50}, 1000);
                    $("#tempc").html("");
                    $("#tempc").css("background-color", "#FFFF00");

                    $.get('src/stream.php?stream=2', function(data002) {
                        $('#tempc').html(data002);
                    });
                }
            );
        }

        $.get('src/stream.php?stream=2', function(data002) {
            $('#tempc').html(data002);
        });

Hello *,

不久之前,我试图为div设置动画,好吧,它现在只有一件事.
第一个函数被激活时(从第3行开始),iframe被加载.但是现在,我怎么能预加载那个iframe?因为动画结束时iframe没有加载…

问候

解决方法:

使用JQuery,您不需要使用iframe.看一下.load()函数. http://api.jquery.com/load

$('#tempc').load('src/stream.php?stream=1');

要预加载页面,只需创建一个隐藏的div并在准备好时显示它.

var stream2 = $('<div>').load('src/stream.php?stream=2').hide();
$('#tempc').html(stream2.html());
上一篇:nuxt 开发中遇到的坑一之nuxt初印象


下一篇:nuxt如何处理用户登录状态持久化:nuxtServerInit 页面渲染前的store处理