“未定义不是函数”在 Dashcode 中播放声音
我正在尝试在 Dashcode 小部件中播放声音。我刚刚将文件放在小部件上,现在我是一个视频项目。
这是我正在使用的代码:
// Values you provide
var qtElement = document.getElementById("video"); // replace with the ID of a QuickTime element
// QuickTime code
qtElement.Play();
当到达最后一行时,我收到此错误:
"Undefined is not a function"
I'm trying to play a sound in a Dashcode widget. I just droped the file over the widget and now I a video item.
This is the code I'm using:
// Values you provide
var qtElement = document.getElementById("video"); // replace with the ID of a QuickTime element
// QuickTime code
qtElement.Play();
When it gets to the final line I got this error:
"Undefined is not a function"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚通过使用 The important part is the kids[0] 解决了我自己的小部件上的问题,
因为 Dashcode 现在将 Id 放在封闭的 div 上。
I just solved the issue on my own widget via using
The important part is the children[0] since Dashcode now puts the Id on an enclosing div.