我在网页中使用了跨源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");
答案 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);
});