Thẻ HTML
Ví dụ
<!DOCTYPE html> <html> <head> <title>HTML iframe Tag</title> </head> <body> <iframe src = "https://www.tutorialspoint.com/index.htm" width = "100%"></iframe> </body> </html>
Thuộc tính srcdoc chỉ định nội dung HTML của trang để hiển thị trong iframe
Một thay thế của thuộc tính srcdoc sẽ là -
var doc = document.querySelector('#demo').contentWindow.document; var content = '<html></html>'; doc.open('text/html', 'replace'); doc.write(content); doc.close();