HTML
예시
<!DOCTYPE html> <html> <head> <title>HTML iframe Tag</title> </head> <body> <iframe src = "https://www.tutorialspoint.com/index.htm" width = "100%"></iframe> </body> </html>
srcdoc 속성은 iframe에 표시할 페이지의 HTML 콘텐츠를 지정합니다.
srcdoc 속성의 대안은 다음과 같습니다. -
var doc = document.querySelector('#demo').contentWindow.document; var content = '<html></html>'; doc.open('text/html', 'replace'); doc.write(content); doc.close();