内联框架的意思是网页里面可以显示网页,如:

    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <title>Title</title>
    6. </head>
    7. <body>
    8. <!--iframe 内联框架
    9. src 地址
    10. -->
    11. <!--<iframe src="https://www.baidu.com/" width="1000px" height="600px"></iframe>-->
    12. <iframe name="mainFrame"></iframe>
    13. <a href="https://www.baidu.com/" target="mainFrame">点击显示</a>
    14. <!--Ajax-->
    15. </body>
    16. </html>

    运行结果(点击超链接之后):
    image.png