blob: fca2dc7107f180fe633539e43c0dbba96ec001d3 (
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
50
51
|
---
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><frameset></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"><frameset cols="50%,50%">
<frame src="https://developer.mozilla.org/en/HTML/Element/frameset" />
<frame src="https://developer.mozilla.org/en/HTML/Element/frame" />
</frameset></pre>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<div class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</div>
<p>{{Compat("html.elements.frameset")}}</p>
<h2 id="参见">参见</h2>
<ul>
<li>{{HTMLElement("frame")}}</li>
<li>{{HTMLElement("iframe")}}</li>
</ul>
<p>{{HTMLRef}}</p>
|