将 attr 应用于 iframe

Applying attr to an iframe

我正在尝试将 attr allow="autoplay; 应用到此图片中显示的 iframe。

我试过了

jQuery(".esg-entry-media-wrapper iframe").attr("allow", "autoplay;");

但它不起作用。

编辑:使用下面的代码。

jQuery("document").ready(function() {
    setTimeout(function() {
     jQuery(".esg-vimeo-frame").attr('allow', 'autoplay');  

    },1000);
});

您的 iframe 没有 .esg-entry-media-wrapper class 你应该做的是给予权利 class.

jQuery(".esg-vimeo-frame").attr("allow", "autoplay;");

编辑:

  • 也许您应该等到 DOM 准备就绪,然后将该属性分配给元素