首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Flash >

获取Flash目前所在域主域名

2012-10-28 
获取Flash当前所在域主域名public function fetchDomainRootURL() : String{var domainRootURL : String

获取Flash当前所在域主域名

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);// step 1 : start with 'http'var httpIdx : int= completeURL.indexOf('http');trace(httpIdx);if (httpIdx == 0){// step 2 : the first index of '//'var doubleSlashsIdx : int= completeURL.indexOf('//');trace(doubleSlashsIdx);if (doubleSlashsIdx != -1){// 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;}

?

热点排行