如何将视频/音频对象添加到DOM?
我在页面的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 jQuery 中,使用 html 语法:
尖括号告诉 jQuery 创建一个新元素。我不确定 jQuery 在幕后使用什么方法(无论是
innerHTML
还是doc.createElement()
),但非 jQuery 方法是:使用 < code>new Audio() 语法,非 jQuery 代码类似:
编辑: 我刚刚测试过,jQuery 在 Chrome 中似乎没有问题:
这是一个 jQuery 演示: <一href="http://jsfiddle.net/gilly3/WRqyM/1" rel="nofollow">http://jsfiddle.net/gilly3/WRqyM/1
更新:IE9 似乎没有去工作。 :-(除非audio
有src
,否则 IE9 不会显示。我已经更新了 jsfiddle。The way you do it in jQuery, you use html syntax:
The angle brackets tell jQuery to create a new element. I'm not sure what method jQuery uses behind the scenes (whether
innerHTML
ordoc.createElement()
), but the non-jQuery approach would be:To use the
new Audio()
syntax, the non-jQuery code is similar:Edit: I just tested, and jQuery seems to have no problem with this in Chrome:
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 theaudio
has asrc
. I've updated the jsfiddle.