如何静音跨源iframe音频

时间:2017-08-11 06:02:52

标签: javascript

我在网页中使用了跨源iframe,

如何将iframe的音频静音

是否可以访问ifram源。

我尝试了以下静音并获取iframe的来源

<iframe id="Iframe" src="#someurl" style="width:1024px;height:768px;volume:silent" hidden></iframe>

document.getElementById('Iframe').contentWindow.targetFunction();

$("#Iframe").attr("src", "http://some");

1 个答案:

答案 0 :(得分:1)

我得到了交叉来源的解决方案

//the iframe code
       setInterval(function() {
              parent.postMessage("Hello","http://davidwalsh.name");
       },1000);

//The parent code
       $(window).on('message', function(e){
            console.log('parent received message!:  ',e.originalEvent.data);
        });