iframe的src是肯定可以改變的,估計樓主不成功是因為擷取的iframe對象不對。
top.document.all("你的iframe的ID/name").src=你的地址; 在IE中要這樣使用,不過我建議為了更好的相容性,iframe 同時有id 和name,而且獲得對象用下面的相容性代碼
function lib_bwcheck(){
this.ver=navigator.appVersion;
this.agent=navigator.userAgent
this.dom=document.getElementById?1:0
this.win = (navigator.appVersion.indexOf("Win")>0);
this.xwin = (navigator.appVersion.indexOf("X11")>0);
this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;
this.ie4=(document.all && !this.dom)?1:0;
this.ie=this.ie4||this.ie5||this.ie6
this.mac=this.agent.indexOf("Mac")>-1
this.opera5=this.agent.indexOf("Opera 5")>-1
this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0;
this.ns4=(document.layers && !this.dom)?1:0;
this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5 || this.dom||false);
this.width = null;
this.height = null;
return this
}
function getObjectById( ID ) {
var bw = new lib_bwcheck();
if (bw.ns6) return document.getElementById(ID);
else if (bw.ns) return document.layers[ID];
else return document.all[ID];
}
既
top.document.all("你的iframe的ID/name").src=你的地址;變成
getObjectById( "你的iframe的ID/name" ).src=你的地址;
按照各位大俠提供的方法,可以改變url,非常感謝。 我這裡還有一個問題就是,我首先要改變父頁面的url(不開啟新的頁面),然後改變其頁面中iframe的src,希望能夠你們的進一步支援。
我用的方法是:
window.location =parentUrl;
document.getElementById("upperPage").src=child1Url;
document.getElementById("bottomPage").src=child2Url;
這樣無法改變iframe的src屬性,如果我把window.location =parentUrl; 去掉,可以改變src屬性。請高手繼續賜教。 大恩不言謝。。。
iframe src local file path
javascript get element src
pass javascript variable to html img src
src url
photo src
php src
jpg src
漂亮簡單Javascript 調色盤代碼
01-13
javascript的indexOf忽略大小寫方法_javascript技巧
01-19
JavaScript的parseInt 取整使用
12-08
用js一招破解所有網頁的加密原始碼的方法
12-08
Wireshark基本介紹和學習TCP三向交握,wiresharktcp
08-22
jQuery AJAX timeout 逾時問題詳解,jqueryajax
06-24
該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。
如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至:
[email protected]
進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service
Get Started for Free
//intl.aliyun.com/pricing
//intl.aliyun.com/trust-center
//intl.aliyun.com/free-trial/enterprise
//intl.aliyun.com/startup
//intl.aliyun.com/partner