使用帶 IFrame 的錨點
通常,使用 Iframe 啟動 Iframe 中的網頁更改,例如,單擊 Ifame 中的連結。但是,可以從 IFrame 外部更改 IFrame 的內容。你可以使用一個錨標籤,其 href
屬性設定為所需的 URL,其 target
屬性設定為 iframe 的 name
屬性。
<iframe src="webpage.html" name="myIframe"></iframe>
<a href="different_webpage.html" target="myIframe">Change the Iframe content to different_webpage.html</a>