Thuộc tính HTML DOM Window frameElement trả về một phần tử HTML tương ứng với cửa sổ mà nó được nhúng vào, chẳng hạn như
Cú pháp
Sau đây là cú pháp -
Phần tử nhúng cửa sổ trả lại
window.frameElement
Ví dụ
Hãy để chúng tôi xem một ví dụ về thuộc tính HTML DOM Window frameElement -
<!DOCTYPE html> <html> <head> <title>HTML DOM Window frameElement</title> <style> * { padding: 2px; margin:5px; } form { width:70%; margin: 0 auto; text-align: center; } input[type="button"] { border-radius: 10px; </style> </head> <body> <form> <fieldset> <legend>HTML-DOM-Window-frameElement</legend> <input id="urlSelect" type="url" placeholder="Type URL here..."> <input type="button" value="Go To" onclick="goToURL()"> <div id="divDisplay"></div> </fieldset> </form> <script> var urlSelect = document.getElementById("urlSelect"); var divDisplay = document.getElementById("divDisplay"); function goToURL() { if(window.frameElement){ window.frameElement.src=urlSelect.value; divDisplay.textContent = 'Current Window is embedded'; } else divDisplay.textContent = 'Current Window is not embedded'; } </script> </body> </html>
Đầu ra
Nhấp vào ‘Đi tới’ nút có đặt trường url -
Đã thay đổi nguồn phần tử nhúng -