前端 html iframe标签 嵌套显示url

匿名 (未验证) 提交于 2019-12-02 20:32:16

例如:在页面嵌套上显示百度

<iframe src="url"></iframe>显示其他url也可以
<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="x-ua-compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1">     <title>Title</title> </head> <body>      <iframe src="http://www.baidu.com"></iframe> </body> </html>

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!