簡體   English   中英

阻止來自 iframe/embed 的彈出窗口

[英]block popups from iframe/embed

我有很多 iframe,它們來自 spotify,我不斷收到彈出窗口詢問設備的內容,這將導致一個嵌入/iframe 在另一個停止時暫停。 如何讓所有 iframe 都不允許彈出窗口? 這只是我所擁有的一小部分:

我的網站可以在這里找到: https://50izac02.github.io/sb/music.html

 <script> var songs1 = [ "https://open.spotify.com/embed/track/1K9QXJtypYRMVrfHixmHh3", "https://open.spotify.com/embed/track/7clyJIrLkEbXUDwj1tC9zz", "https://open.spotify.com/embed/track/0AB5CTb04eqXnV9hEZx9FL", "https://open.spotify.com/embed/track/31G6jTLEpHwGs3vpQ7iUJM"]; document.getElementById("spot1").src = songs1[Math.floor(Math.random() * 4) + 0]; var songs2 = [ "https://open.spotify.com/embed/track/1BlqKx3JtMKY3K6F0uUbqW", "https://open.spotify.com/embed/track/7h2yzh9vIBxSBN3885QyQt", "https://open.spotify.com/embed/track/4EAV2cKiqKP5UPZmY6dejk", "https://open.spotify.com/embed/track/5dqrgmHHBuUzwYKBXJuIm0" ]; document.getElementById("spot2").src = songs2[Math.floor(Math.random() * 4) + 0]; var songs3 = [ "https://open.spotify.com/embed/track/5dqrgmHHBuUzwYKBXJuIm0", "https://open.spotify.com/embed/track/6QyBWey7P8ILuhS5RO7xYe", "https://open.spotify.com/embed/track/5qrSlOut2rNAWv3ubArkNy", "https://open.spotify.com/embed/track/0TN3FKCgNsck8Z0t463bU0", ]; document.getElementById("spot3").src = songs3[Math.floor(Math.random() * 4) + 0]; var songs4 = [ "https://open.spotify.com/embed/track/5IcpFfoUZLU3G7b8BtppFi", "https://open.spotify.com/embed/track/4R8RG1OWtp0ahfyGUcD76M", "https://open.spotify.com/embed/track/6IHWepcSxwLdzM38nQSrnC", "https://open.spotify.com/embed/track/6JyuJFedEvPmdWQW0PkbGJ",]; document.getElementById("spot4").src = songs4[Math.floor(Math.random() * 4) + 0]; var songs5 = [ "https://open.spotify.com/embed/track/41n0s0MdHk3SQYrJ4djpXb", "https://open.spotify.com/embed/track/3uKxSYyWgMqu9LrgC2Lo7v", "https://open.spotify.com/embed/track/0e9yz3Fz7Nn6I5E4XBP8no", "https://open.spotify.com/embed/track/4hPpVbbakQNv8YTHYaOJP4", ]; document.getElementById("spot5").src = songs5[Math.floor(Math.random() * 4) + 0];
 <div id="row 1"> <iframe id="spot1" src="" width="250" height="90" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe> <iframe id="spot2" src="" width="250" height="90" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe> <iframe id="spot3" src="" width="250" height="90" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe> <iframe id="spot4" src="" width="250" height="90" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe> <iframe id="spot5" src="" width="250" height="90" frameborder="0" allowtransparency="true" allow="encrypted-media"></iframe> </div>

您可以使用以下命令對 iframe 進行沙箱處理:sandbox="allow-scripts"。 這應該會阻止他們產生彈出窗口。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM