aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/html/element/frameset/index.html
blob: 14f5a187eb4e0d20172549edc9e37fd471e5b6de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
title: <frameset>
slug: Web/HTML/Element/frameset
tags:
  - Deprecated
  - Element
  - HTML
  - Reference
  - Web
translation_of: Web/HTML/Element/frameset
---
<div>{{Deprecated_header}}</div>

<h2 id="概述">概述</h2>

<p><code>&lt;frameset&gt;</code> 是一个用于包含 {{HTMLElement("frame")}} 的 HTML 元素。</p>

<div class="note"><strong>注意:</strong> 现在不鼓励使用 frame,而是用{{HTMLElement("iframe")}}。现今的网站一般都不使用 frame。</div>

<h2 id="属性">属性</h2>

<p>像所有其他的 HTML 元素一样,这个元素支持<a href="/en-US/HTML/Global_attributes" title="HTML/Global attributes">全局属性</a></p>

<dl>
 <dt>{{htmlattrdef("cols")}}</dt>
 <dd>这个属性指定一个框架集中列的数目和尺寸。</dd>
 <dt>{{htmlattrdef("rows")}}</dt>
 <dd>这个属性指定一个框架集中行的数目和尺寸。</dd>
</dl>

<h2 id="例子">例子</h2>

<pre class="brush:html">&lt;frameset cols="50%,50%"&gt;
  &lt;frame src="https://developer.mozilla.org/en/HTML/Element/frameset" /&gt;
  &lt;frame src="https://developer.mozilla.org/en/HTML/Element/frame" /&gt;
&lt;/frameset&gt;</pre>

<h2 id="Browser_compatibility">Browser compatibility</h2>

<p>{{Compat("html.elements.frameset")}}</p>

<h2 id="参见">参见</h2>

<ul>
 <li>{{HTMLElement("frame")}}</li>
 <li>{{HTMLElement("iframe")}}</li>
</ul>

<p>{{HTMLRef}}</p>