摘要:
function AddToFavorite() { if (document.all){ window.external.addFavorite(document.URL,document.title); }else if (window.sidebar){ window.sidebar.addPanel(document.title, document.URL, ""); } } //设为首页function setHomepage(){ if(document.all){ document.body.style.behavior='url(#default#h 阅读全文
摘要:
一般分两种情况:一、 是同主域下面,不同子域之间的跨域; 同主域,不同子域跨域,设置相同的document.domian就可以解决; 父页访问子页,可以document.getElementById("myframe").contentWindow.document来访问iframe页面的内容;如果支持contentDocument也可以直接document.getElementById("myframe").contentDocument访问子页面内容; 子页访问父页,可以parent.js全局属性二、 是不同主域跨域; 前提,www.a.com下a. 阅读全文