http://blog.csdn.net/andyxm/article/details/5219919 我们引用本地flash,实现flash与js双向交互. function thisMovie(movieName) { if (window.document[movieName]){ return window.document[movieName]; }else if (navigator.appName.indexOf("Microsoft")==-1)…
访问后端接口报错:No 'Access-Control-Allow-Origin' header is present on the requested resource 解决: Access-Control-Allow-Origin是HTML5中定义的一种解决资源跨域的策略. 他是通过服务器端返回带有Access-Control-Allow-Origin标识的Response header,用来解决资源的跨域权限问题. 在Response header添加Access-Control-Allo…