bootstrap-wysihtml5改变iframe src

时间:2018-05-03 15:01:52

标签: php html iframe laravel-5.4 wysihtml5

我想在wysihtml5编辑器中使用Youtube abd Vimeo iframe代码。我用过

('#answer').wysihtml5();

$('#answer').wysihtml5({
      toolbar: {
        "font-styles": true, // Font styling, e.g. h1, h2, etc.
        "emphasis": true, // Italics, bold, etc.
        "lists": true, // (Un)ordered lists, e.g. Bullets, Numbers.
        "html": true, // Button which allows you to edit the generated HTML.
        "link": true, // Button to insert a link.
        "image": true, // Button to insert an image.
        "color": false, // Button to change color of font
        "blockquote": true, // Blockquote
        "size": "sm" // options are xs, sm, lg
      }
    });

关注我使用的iframe代码

<iframe width="560" height="315" src="https://www.youtube.com/embed/zJZKWF7YBas" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

在数据库中,我看到它如下

<p>&lt;iframe width="560" height="315" src="<a href="https://www.youtube.com/embed/zJZKWF7YBas&quot;">https://www.youtube.com/embed/zJZKWF7YBas"</a>; frameborder="0" allow="autoplay; encrypted-media" allowfullscreen&gt;&lt;/iframe&gt;?<br></p>

表示已转换iframe src

在屏幕上,我看到它如下。

<iframe width="560" height="315" src="https://www.youtube.com/embed/zJZKWF7YBas"; frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>?

所以我的问题是为什么wysihtml5正在改变iframe src以及如何阻止它?

0 个答案:

没有答案