有時候,任務是在一個容器中點擊一個鏈接,然後在另一個容器中顯示內容。在HTML中,使用iframes可以輕鬆地在頁面上指定的區域顯示內容。在本文中,使用兩個不同的範例,連結被用來透過另一個iframe連結載入一個iframe。在範例1中,上方iframe中的連結用於在下方iframe中顯示兩張不同的圖片。在範例2中,使用上方iframe中的鏈接,影片內容同時顯示在下方iframe和上方iframe。
資料夾與頁面設計步驟 -
步驟 1 − 建立兩個檔案 iFrameFile1.html 和 iFrameFile2.html。
步驟 2 - 在 iFrameFile1.html 中編寫 html 程式碼,並在此檔案中建立兩個 iFrame,名稱為 iframeUpper 和 iframeBottom。
第三步 - 將iframeBottom保持為空,並從iframeUpper內部載入iFrameFile2.html檔案。
第四步 - 在iFrameFile2.html中編寫html程式碼,並在此檔案中建立兩個標籤
步驟 5 - 使用 href 和圖片檔案的檔案名稱的相對或絕對路徑,並在 標籤中使用 target="iframeBottom"
步驟 6 - 在瀏覽器中開啟 iFrameFile1.html。連結將顯示在上方的 iframe 中。逐一點擊鏈接,可以看到底部 iframe 中的圖片文件內容發生變化。
檔案1 − iFrameFile1.html
檔 2 - iFrameFile2.html
檔 3 − birdalone.jpg
##檔4 − bird.jpg
<!DOCTYPE html> <html> <body> <center> <iframe src=".\iframeFile2.html" name="iframeUpper" width="70%" height="300"> </iframe> <br /><br /> <iframe src="" name="iframeBottom" width="25%" height="250"> </iframe> </center> </body> </html>
<!DOCTYPE html> <html> <body> <center> <h1 style="color: purple">Showing Beautiful Birds</h1> <h2 style="color: cyan">You will love this...</h2> <h3 style="color: orange">Just click the links</h2> <p> <a href= "./birdalone.jpg" target="iframeBottom" width="25%" height="250" frameborder="1" allowfullscreen="allowfullscreen">The Cuteee Bird</a> </p> <p> <a href= "./bird.jpg" target="iframeBottom" width="25%" height="250" frameborder="1" allowfullscreen="allowfullscreen">The Friends Together</a> </p> </center> </body> </html>
要查看結果,請在瀏覽器中開啟 iFrameFile1.html。現在點擊連結並檢查結果。
資料夾與頁面設計步驟 -
第一步 - 建立兩個檔案 iFrameFile11.html 和 iFrameFile22.html。
第二步驟 - 在iFrameFile11.html中編寫html程式碼,並在該檔案中建立兩個名為iframeUpper和iframeBottom的iFrame。
第三步驟 - 保持iframeBottom為空,並從iframeUpper內載入iFrameFile22.html檔案。
步驟 4 - 在 iFrameFile22.html 中編寫 html 程式碼,並在此檔案中建立兩個 標籤
第5 步驟 - 在 標記中使用href 以及相對或絕對路徑以及視訊檔案的檔案名,並在一個 標記中使用target="iframeBottom" 並使用另一個 標記中的target=_self
步驟6 - 在瀏覽器中開啟iFrameFile11.html。連結將顯示在上方的iFrame中。依序點擊連結以查看影片檔案的內容。首先,內容將顯示在底部的iFrame中,然後在同一上方的iFrame中顯示。
本例中使用了下列檔案
檔1 − iFrameFile11.html
#檔 2 - iFrameFile22.html
##檔 3 - Birdvideo.mp4
<!DOCTYPE html> <html> <body> <center> <iframe src=".\iframeFile22.html" name="iframeUpper" width="70%" height="300"> </iframe> <br /><br /> <iframe src="" name="iframeBottom" width="25%" height="250"> </iframe> </center> </body> </html>
<!DOCTYPE html> <html> <body> <center> <h1 style="color: purple">Showing Beautiful Birds Video</h1> <h2 style="color: cyan">You will love this...</h2> <h3 style="color: orange">Just click the links</h2> <p> <a href= "./birdvideo.mp4" target="iframeBottom"> First Open the Video in the bottom frame </a> </p> <p> <a href= "./birdvideo.mp4" target=_self> Open The video in the same frame </a> </p> </center> </body> </html>
要查看結果,請在瀏覽器中開啟 iFrameFile11.html。現在點擊連結並檢查結果。
在這個HTML的Iframe和a-href文章中,使用兩個不同的範例,透過點擊第一個Iframe中的連結來展示第二個Iframe中的內容的方法被給出。第二個範例也展示如何在同一個Iframe中查看內容。第一個範例使用圖片文件,而第二個範例使用了一個視訊顯示範例。
以上是如何將一個iframe中的超連結載入到另一個iframe?的詳細內容。更多資訊請關注PHP中文網其他相關文章!