木子屋 Dnawo's BLOG

HTML框架iframe和frameset的区别

👤 dnawo 📅 2022-01-06 👁 1835 👍 0 💬 0 🔄 来源:本站原创
iframe是个内联框架,放在<body>里面:
<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>iframe</title>
</head>

<body>
	<iframe src="[i]http[/i]://www.mzwu.com/"></iframe>
	<iframe src="[i]http[/i]://www.mzwu.com/"></iframe>
</body>
</html>

frameset是框架集,不能放在<body>里面:
<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>frameset</title>
</head>

<frameset rows="30%,*"  noresize="noresize">
  <frame src="[i]http[/i]://www.mzwu.com/"></frame>
	<frame src="[i]http[/i]://www.mzwu.com/"></frame>

  <noframes>Your browser does not handle frames!</noframes>
</frameset>

</html>

评论(0)

暂无评论。

验证码
评论需审核通过后显示
← 上一篇 蒲公英X1无线中继上网设置指南(手机篇) 下一篇 → 蒲公英X1无线中继上网设置指南(电脑篇)