实际上使用jQuery(v1和v2 - 最新版本)面临一个非常奇怪的行为。 我有一个管理内容的脚本,但是当内容包含iframe时它会失败。
<article>
<section>some text with mixed tags and an <iframe /> </section>
</article>
<script>
$('section').each(function() {
console.log( $(this).html() )
});
</script>
这将返回 undefined
我是否缺少在这些情况下使用的解决方法?
答案 0 :(得分:2)
iframe的 open 标记在哪里?
<section>some text with mixed tags and an <iframe /> </section>
<强>更新强>
正如@Mike c(感谢Mike)纠正我的问题是你的自我结束标记<iframe />
答案 1 :(得分:0)
如果书面作品
<article>
<section>some text with mixed tags and an <iframe></iframe> </section>
</article>