我想在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><iframe width="560" height="315" src="<a href="https://www.youtube.com/embed/zJZKWF7YBas"">https://www.youtube.com/embed/zJZKWF7YBas"</a>; frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>?<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以及如何阻止它?