javascript 跨域

http://www.uuxiao.com/diary_show.asp?id=632

http://www.cnblogs.com/rainman/archive/2011/02/20/1959325.html

http://www.cnblogs.com/fangjins/archive/2012/08/19/2645631.html

1、jquery 获取iframe中元素的值
http://www.cnblogs.com/skyaspnet/archive/2010/02/21/1670778.html
父页面调用子页面的值:
$("#childFrame").contents().find("#childInput").val();
子页面调用父页面的值:
parent.window.fatherFn();
或者top.fatherFn();
2、javascirpt跨域
方法一:使用iframe嵌套,通过改变location.hash来跨域
http://www.jb51.net/article/23304.htm
方法二:
使用getScript()和getJson()跨域;
http://hi.baidu.com/spinshine/item/9595e3860a1143dfd0f8cd6e
方法三:
只针对两个域名的主域名相同的情况,设置document.domain。
方法四:
通过flash player
方法五:
http://sjolzy.cn/PHP-Using-P3P-to-achieve-cross-domain.html

你可能感兴趣的:(javascript 跨域)