<video>标签和自动播放属性:如何使其适用于制作?

时间:2017-10-19 14:22:30

标签: html5-video prestashop prestashop-1.7

我试图在Prestashop 1.7上嵌入autoplay的视频集。我使用默认编辑器,其代码如下:

<div class="owl-item" style="width: 100%;">
  <video width="100%" height="600" autoplay>
    <source src="/img/cms/myvideo.mp4" type="video/mp4"> Your browser does not support the video tag.
    </source>
  </video>

当我发布它时,似乎Prestashop只编译没有autoplay属性的代码。我注意到它发生在其他基于PHP的代码中。我不知道如何避免它,也无法理解为什么。

有什么想法?谢谢!

1 个答案:

答案 0 :(得分:1)

PrestaShop使用名为“HTMLPurifier”的库来清除textarea中可能存在的“坏”html,允许您将文本也作为html插入。 该库将可疑标签(或属性)清理为iframe,自动播放,脚本和许多其他标签。

通常禁用它可以解决保存后标签或标签属性消失的问题:)

享受