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

跨域名设置cookie或获取cookie

程序员文章站 2022-05-27 11:29:23
...
可以使用jquery里面的ajax中的jsonp的方式来访问就可以了。代码如下:
      url: 'your url'     data: {'xx' : 'xx', 'xx2' : 'xx2'     success:          
      type:'GET'     dataType: 'jsonp',
     jsonp: "callback"     jsonpCallback:"jsonpReturn"
 });

php中可以这样写:

        'jsonpReturn('.jsondecode().')' }