作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我有以下代码:
var cont = <div id="foo">
imgSection.find('video').each(function(_ind)
{
cont.append('<div class="fullScreenBg"> '+ $(this) +' </div>');
});
结果是:
<div id="foo">
<div class="fullScreenBg"> [object Object] </div>
</div>
但我实际上想要显示对象/视频的 html。当我使用时:
$(this).html()
我已经非常接近了,但正如预期的那样,它只显示了 videoTag 的innerHtml。那么我该如何正确地做到这一点呢?
最佳答案
您需要将 video
元素包装在 div
中并附加该对象。目前的问题是您将对象作为字符串附加,这导致对象到字符串转换,导致 [object Object]
。
imgSection.find('video').each(function(_ind) {
cont.append($(this).wrap('<div class="fullScreenBg"></div>').parent());
});
关于javascript - 如何在div中添加对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23296396/
我是一名优秀的程序员,十分优秀!