1

我对以下代码片段有疑问

    <html>
  <head>
    <script src="https://code.createjs.com/createjs-2015.05.21.min.js"></script>
    <script>
      function load() {
       var queue = new createjs.LoadQueue();
 queue.on("error", handleComplete, this);
 queue.loadFile({id:"sound", src:"https://path-to-audio.mp3"});

 function handleComplete(e) {
    var t = 0;
 }
 }
    </script>
  </head>
  <body>
    <button onclick="load();" class="load-image">Load</button>
  </body>
</html>

它在 IE9 中不起作用。我认为它与 IE9 中的 XMLHttpRequest 问题有关。如何设置 PreloadJS 来解决这个问题?

谢谢。

4

0 回答 0