[AS3]loaderInfo.url获取带参数的完整地址代码示例
Alert.show(this.loaderInfo.url);输出:
http://localhost/transport/bin-debug/index.swf
应该怎样才能获取带参数的地址呢?例如:
http://localhost/transport/bin-debug/index.html?555=%B9%E3
我这样搞掂了:
var nowURL:String = ExternalInterface.call("window.location.search.substring",1);
this.loaderInfo.url 是指SWF文件自己的路径(不带后面的参数)
参数在loaderInfo.parameters集合中
ExternalInterface.call("window.location.host.toString();") 是使用JS读取地址栏,必须在支持JS的环境中才有效.
地址栏中的地址和SWF的路径是两回事
热门文章推荐
- [HLS]做自己的m3u8点播系统使用HTTP Live Streaming(HLS技术)
- [FMS]FMS流媒体服务器配置与使用相关的介绍
- [AS3]什么是M3U8,与HTML5的区别是什么
- AS2.0 让flash自适应全屏,并且不自动缩放
- [AS3]as3.0的sound类常用技巧整理
- [AS3]as3与ByteArray详解、ByteArray介绍、ByteArray用法
- 关于RTMP,RTMPT,RTMPS,RTMPE,RTMPTE协议的介绍
- [JS]分享浏览器弹出窗口不被拦截JS示例