Javascript로 iframe안에 있는 element를 선택하려면 다음과 같이 하면 됩니다.
1 2 3 4 |
const iframeElem = document.querySelector('iframe#frameid'); console.log(iframeElem.contentWindow.document.body.querySelectorAll('a')); |
Javascript로 iframe안에 있는 element를 선택하려면 다음과 같이 하면 됩니다.
1 2 3 4 |
const iframeElem = document.querySelector('iframe#frameid'); console.log(iframeElem.contentWindow.document.body.querySelectorAll('a')); |
Copyright © 2024 토탈 데이터 사이언스 - Total Data Science