对于主域相同,子域不同,我们可以设置相同的document.domain来欺骗浏览器,达到跨子域的效果。 img.html就是我们iframe要引用的:
例如:我们有两个域名:www.a.com 和 img.a.com
在www.a.com下有a.html
在img.a.com下有img.json和img.html这两个文件。
img.json就是一些我们要获取的数据:
[ { "name" : "img1", "url" : "http://img.a.com/img1.jpg" }, { "name" : "img2", "url" : "http://img.a.com/img2.jpg" }]
Insert title here
a.html就是要通过跨子域获取数据的页面:
Insert title here
a.html中我们通过contentWindow.$来获取子页面的jquery对象,然后通过getJSON获取数据,并通过www.a.com上的$对象把数据写入到ul中。
在子页面img.html中我们通过parent.window来访问父页面的$对象,并操作元素添加数据。