index.html里有段这样的代码: <script> // Issue a warning if trying to preview an exported project on disk. (function(){ // Check for running exported on file protocol if (window.location.protocol.substr(0, 4) === "file") { alert("Exported games won't work until you upload them. (When running on the file:/// protocol, browsers block many features from working for security reasons.)"); } })(); </script> 将它注释掉或者删掉都可以。。不过不建议本地文件浏览。最好的办法还是像我三楼说的那样搭个本地服务器。