使用您选择的窗口方法轻松定位URL

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用您选择的窗口方法轻松定位URL相关的知识,希望对你有一定的参考价值。

Great little snippet I use to target an external link.
  1. // gotoLink takes 3 parameters: the event, the URL string, and the method (_self, _blank, etc)
  2. //
  3. // sample usage:
  4. // gotoLink( evt, "http://google.com", "_blank" );
  5.  
  6.  
  7. function gotoLink( evt:Event, l:String, meth:String ) : void
  8. {
  9. var URLReq:URLRequest = new URLRequest(l);
  10. try
  11. {
  12. navigateToURL(URLReq, meth);
  13. } catch (e:Error)
  14. {
  15. trace(e);
  16. }
  17. }

以上是关于使用您选择的窗口方法轻松定位URL的主要内容,如果未能解决你的问题,请参考以下文章

crm使用url打开窗口视图

跨域访问方法介绍--使用片段识别符传值

css常用代码片段 (更新中)

js-权威指南学习笔记14

在一些片段之间填充对象变量的最佳方法

轻松保存重复多用的代码片段