欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Flex跳转到JSP或者其他非Flex页面Html代码

程序员文章站 2022-07-02 09:33:26
flex跳转到jsp或者其他非flex页面       html代码 var url:string="https://"+urlutil.getse...
flex跳转到jsp或者其他非flex页面

 

 

 

html代码

var url:string="https://"+urlutil.getservernamewithport(application.application.url)+"/dzdj/index.?id=" + 1;   

                 externalinterface.call('window.open',url,'_top');  

 

_top是可变的,_top表示在当前页面打开,关闭远页面。

 

 

 

 

 

 

 

导入类:

 

        import flash.net.urlrequest;

        import flash.net.navigatetourl;

 

关闭当前:

 

                        var url:urlrequest = new urlrequest("javascript:window.close()");

                        navigatetourl(url,"_top");

 

                        (注意:要在服务器上测试,否则会报安全沙箱冲突);

 

在浏览器上跳转页面

 

                        navigatetourl(new urlrequest("https://www.baidu.com"),"_top");

 

打开一个新的浏览器:

 

                       var request:urlrequest = new urlrequest("https://www.baidu.com/);

                       navigatetourl(request);

 

 

 

flex跳转到flex

 

flex和jsp不一样,没有所谓的这个页面跳转到另外的一个页面。一般都是用viewstack进行页面切换,其他模块就需要loadmoudle进行函数设置了。www.2cto.com

 

<mx:viewstack x="0" y="0" id="viewstack1" width="619" height="700">

   <mx:canvas id="view1" width="100%" height="100%">

      <mx:button label="view2 " click="viewstack1.selectedchild=view2"/>

       </mx:canvas>

 

 

   <mx:canvas id="view2" width="100%" height="100%" color="#3fcfe9">

   </mx:canvas>

</mx:viewstack>