我正在使用来自 Adobe Edge Commons 示例 MixitBaby 的以下代码参考,但我在 Chrome 和 IE10 上不断收到此错误,但这在 Firefox 上运行良好。
“未捕获的 ReferenceError:EC 未定义”
function soundSetup()
{
var assetsPath = "sound/";
EC.Sound.setup(
[
{src: assetsPath + "introsound.mp3|" + assetsPath + "introsound.ogg", id: "intro"}
],
function(){ EC.info("Sound setup finished", "DEMO"); }
);
}
yepnope({
load: "js/EdgeCommons-0.7.1.min.js",
complete: function()
{
if(EC == undefined)
yepnope({load: "js/EdgeCommons-0.7.1.min.js", complete: soundSetup});
else
soundSetup();
} //complete
});
-谢谢