如何将视频/音频对象添加到DOM?

发布于 2024-12-04 08:55:14 字数 273 浏览 0 评论 0原文

我在页面的 Javascript 代码中创建了一个新的 HTML5 Audio() 对象。我想将此音频对象放置在表格单元格内。

typeof() 告诉我 Audio() 给了我一个对象,因此表单元格 jquery 对象上的 .append() 不起作用。

我想将对象放入页面并显示其控件,以便用户可以与其交互 - 是否可以在不实际编写

<audio src...></audio>

HTML 的情况下实现?

I create a new HTML5 Audio() object in Javascript code in my page. I want to place this audio object inside a table cell.

typeof() tells me that Audio() gives me an object, and so .append() on the table cell jquery object does not work.

I'd like to place the object into the page and show its controls so the user can interact with it - is that possible without actually writing the

<audio src...></audio>

HTML ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

走过海棠暮 2024-12-11 08:55:15

在 jQuery 中,使用 html 语法:

td.append("<audio>");

尖括号告诉 jQuery 创建一个新元素。我不确定 jQuery 在幕后使用什么方法(无论是 innerHTML 还是 doc.createElement()),但非 jQuery 方法是:

var audioElement = td.appendChild(document.createElement("audio"));

使用 < code>new Audio() 语法,非 jQuery 代码类似:

var audioElement = td.appendChild(new Audio);

编辑: 我刚刚测试过,jQuery 在 Chrome 中似乎没有问题:

td.append(new Audio());

这是一个 jQuery 演示: <一href="http://jsfiddle.net/gilly3/WRqyM/1" rel="nofollow">http://jsfiddle.net/gilly3/WRqyM/1

更新:IE9 似乎没有去工作。 :-( 除非 audiosrc,否则 IE9 不会显示。我已经更新了 jsfiddle。

The way you do it in jQuery, you use html syntax:

td.append("<audio>");

The angle brackets tell jQuery to create a new element. I'm not sure what method jQuery uses behind the scenes (whether innerHTML or doc.createElement()), but the non-jQuery approach would be:

var audioElement = td.appendChild(document.createElement("audio"));

To use the new Audio() syntax, the non-jQuery code is similar:

var audioElement = td.appendChild(new Audio);

Edit: I just tested, and jQuery seems to have no problem with this in Chrome:

td.append(new Audio());

Here's a jQuery demo: http://jsfiddle.net/gilly3/WRqyM/1

Update: IE9 doesn't seem to work. :-( IE9 just doesn't show up unless the audio has a src. I've updated the jsfiddle.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文