我正在尝试在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"

最佳答案

我只是通过使用自己的小部件解决了这个问题

var qtElement = document.getElementById('AlainVoice');
// QuickTime code
qtElement.children[0].play();

重要的部分是children [0],因为Dashcode现在将ID放在封闭的div上。

09-07 15:27