How to mute an iframe?

前端 未结 1 820
伪装坚强ぢ
伪装坚强ぢ 2021-01-11 21:06

I need to mute an iframe, but I don\'t know how to do it. Here is an example of what I have:

http://www.codecademy.com/en/bitAce74593/codebits/nW7U9b

Here

相关标签:
1条回答
  • 2021-01-11 21:32

    you can mute it by js, example: just put this in your page:

    <script type="text/javascript">
        myVid=document.getElementById("video1");
        myVid.muted=true;
    </script>
    

    you should replace "video1" by the id of your iframe, if the iframe don't have any id add an id to it as follow:

    <iframe width="820" height="390" src="http://nyan.cat" id="iframeId"></iframe>
    
    0 讨论(0)
提交回复
热议问题