如何在外部域中设置iframe内部的样式?

时间:2014-05-26 15:28:52

标签: javascript php css iframe

我有一个网站,其中包含来自3个不同域的3个iframe。每个iframe都在一个单独的页面上。将样式表应用于所有3个iframe的最佳方法是什么?

谢谢!

1 个答案:

答案 0 :(得分:1)

这可以通过某些网站完成,但不是全部由于“相同的原始政策”。 允许它的是Twitter。这是重要的代码。

    $('#iframe').each(function(i){
        var $head = $(this).contents().find('head');
        if ($head.length){
            $head.append($("<link/>", { 
                rel: "stylesheet", 
                href: "http://url.to.your.css", 
                type: "text/css"
            }));
        }
    });

要在多个页面上使用相同的CSS,您可以使用选择器来获取这三个iframe $('#iframe1, #iframe2, #iframe3'),但请记住,加载速度可能比另一个慢。

如果它们在不同的页面上并不重要,选择器将捕获任何存在的。

在下面的示例中,稍微缩小了默认的twitter标头,setInterval用于继续检查iframe是否已加载,一旦完成它就被销毁。

HTML

<a class="twitter-timeline" style="height:600;" href="#" data-widget-id="your twitter widget id">Tweets</a>

JS

// twitter's own js
    !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");

// jquery to insert the css
$(function(){
    var twitterCssCount = 0;
    var twitterCss=setInterval(function(){
        twitterCssCount++;
        if (twitterCssCount>10) clearTimeout(twitterCss);
        $('iframe.twitter-timeline').each(function(i){
            var $head = $(this).contents().find('head');
            if ($head.length){
                $head.append($("<link/>", { 
                    rel: "stylesheet", 
                    href: "//url.to.your.css", 
                    type: "text/css"
                }));
                clearTimeout(twitterCss);
            }
        });
    },1000);
});

CSS文件的内容

.stream{
    height:560px !important; /* because we're removing some of the header */
}
.timeline-header{
    padding:0 0 5px 0;
}
.timeline-header .ic-twitter-badge{
    border:0;
    top:7px;
    right:7px;
}
h1.summary, h2.byline{
    display:none !important;
}
p.list-description{
    padding:5px;
    padding-bottom:0;
    margin:0;
}
.root.customisable-border{
    border-color:#666;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}