定義和用法
src屬性設置或返回的值src的iframe中元素的屬性。
在src屬性指定文檔的URL的iframe中顯示。
瀏覽器支持
屬性 | |||||
---|---|---|---|---|---|
src | 是 | 是 | 是 | 是 | 是 |
句法
返回src屬性:
iframeObject .src
設置src屬性:
iframeObject .src= URL
屬性值
值 | 描述 |
---|---|
URL | 指定文檔的URL在iframe嵌入。 可能的值:
|
技術細節
返回值: | 一個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對象