[AS3]as3获取一个字符串地址中的域名
[AS3]as3获取一个字符串地址中的域名
AS3]as3获取一个字符串地址中的域名
- public function fetchDomainRootURL() : String
- {
- var domainRootURL : String = null;
- // if pure as3 project, fetch complete URL just remove 'parent'
- var completeURL : String = this.parent.stage.loaderInfo.url;
- trace(completeURL);
- // cuplayer.com: step 1 : start with 'http'
- var httpIdx : int = completeURL.indexOf('http');
- trace(httpIdx);
- if (httpIdx == 0)
- {
- // cuplayer.com: step 2 : the first index of '//'
- var doubleSlashsIdx : int = completeURL.indexOf('//');
- trace(doubleSlashsIdx);
- if (doubleSlashsIdx != -1)
- {
- // cuplayer.com:step 3 : the first index of '/'
- var domainRootSlashIdx : int = completeURL.indexOf('/', doubleSlashsIdx + 2);
- trace(domainRootSlashIdx);
- if (domainRootSlashIdx != -1)
- domainRootURL = completeURL.substring(httpIdx, domainRootSlashIdx + 1);
- }
- }
- trace(domainRootURL);
- return domainRootURL;
- }
热门文章推荐
- [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示例
请稍候...