最新的Web開發教程
 

IFrame src Property

<iframe對象

更改在iframe嵌入文檔的URL:

document.getElementById("myFrame").src = "http://www.cnn.com";
試一試»

定義和用法

src屬性設置或返回的值src的iframe中元素的屬性。

src屬性指定文檔的URL的iframe中顯示。


瀏覽器支持

屬性
src

句法

返回src屬性:

iframeObject .src

設置src屬性:

iframeObject .src= URL

屬性值

描述
URL 指定文檔的URL在iframe嵌入。

可能的值:
  • 絕對URL -指向另一網站(like src="http://www.example.com/default.htm")
  • 相對URL -指向一個文件的Web站點內(like src="default.htm")

技術細節

返回值: 一個String,表示被嵌入在iframe文檔的URL。 返回整個URL,包括協議(like http://)

更多示例

獲取是在iframe顯示的文檔的URL:

var x = document.getElementById("myFrame").src;

x的結果將是:

http://www.w3ii.com/default.html
試一試»

相關頁面

HTML參考: HTML <iframe> src屬性


<iframe對象