srcdoc 사용 에 표시할 페이지의 HTML 콘텐츠를 지정하는 속성입니다. 다음 코드를 실행하여 srcdoc을 구현할 수 있습니다. 속성 -
예시
<!DOCTYPE html> <html> <body> <iframe srcdoc = "<h2>Tutorialspoint</h2>" src = "new.html"> <p>Browser do not support iframes.</p> </iframe> </body> </html>
srcdoc 사용 에 표시할 페이지의 HTML 콘텐츠를 지정하는 속성입니다. 다음 코드를 실행하여 srcdoc을 구현할 수 있습니다. 속성 -
<!DOCTYPE html> <html> <body> <iframe srcdoc = "<h2>Tutorialspoint</h2>" src = "new.html"> <p>Browser do not support iframes.</p> </iframe> </body> </html>