宜昌本地软件开发与弱电工程服务商
项目咨询 · 快速响应

[Flex]Flex实现cookies功能代码示例

2016-10-13 00:16:48 点击量:8 标签: 收藏本文

[Flex]Flex实现cookies功能代码示例

  1. import flash.external.ExternalInterface;  
  2. import flash.net.URLVariables;  
  3.    
  4. public var Cookies: URLVariables = new URLVariables(ExternalInterface.call("function(){return '8=); '+document.cookie}").replace(/;\s/g, "&"));  
  5.    
  6. Cookies['test']="blah";  
  7. trace("cookie " + Cookies['test']);