flex 页面跳转 方法一:使用navigateToURL var url:String = "http://localhost/flex/test.jsp"; var request:URLRequest = new URLRequest(url); navigateToURL(request,"_self"); 方法二:引用flash中的 import flash.external.ExternalInterface 这个接口 他能提供像js中window.location.href方法一样方便 ExternalInterface.call("function(){ " + " window.location.href='http://localhost/flex/test2.jsp';" + "}")
参考: http://blog.youkuaiyun.com/tianpeijun/archive/2009/04/17/4088496.aspx