属性 | 值 | 描述 | ||
filename | 规定被下载的超链接目标。( HTML5 中的新属性) | |||
URL | 规定链接指向的页面的 URL。 | |||
language_code | 规定被链接文档的语言。 | |||
media_query | 规定被链接文档是为何种媒介/设备优化的。( HTML5 中的新属性) | |||
text | 规定当前文档与被链接文档之间的关系。 | |||
· _blank · _parent · _self · _top · framename | 规定在何处打开链接文档。 | |||
MIME type | 规定被链接文档的的 MIME 类型。( HTML5 中的新属性) |
属性 | 值 | 描述 |
pixels | 规定表格边框的宽度。 | |
· pixels · % | 规定单元边沿与其内容之间的空白。 | |
· pixels · % | 规定单元格之间的空白。 | |
· void · above · below · hsides · lhs · rhs · vsides · box · border | 规定外侧边框的哪个部分是可见的。 | |
· none · groups · rows · cols · all | 规定内侧边框的哪个部分是可见的。 | |
text | 规定表格的摘要。 | |
· % · pixels | 规定表格的宽度。 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
属性 | 值 | 描述 |
· right · left · center · justify · char | 定义表格行的内容对齐方式。 | |
character | 规定根据哪个字符来进行文本对齐。 | |
number | 规定第一个对齐字符的偏移量。 | |
· top · middle · bottom · baseline | 规定表格行中内容的垂直对齐方式。 |
属性 | 值 | 描述 |
text | 规定单元格中内容的缩写版本。 | |
· left · right · center · justify · char | 规定单元格内容的水平对齐方式。 | |
category_name | 对单元进行分类。 | |
character | 规定根据哪个字符来进行内容的对齐。 | |
number | 规定对齐字符的偏移量。 | |
number | 规定单元格可横跨的列数。 | |
header_cells'_id | 规定与单元格相关的表头。 | |
number | 规定单元格可横跨的行数。 | |
· col · colgroup · row · rowgroup | 定义将表头数据与单元数据相关联的方法。 | |
· top · middle · bottom · baseline | 规定单元格内容的垂直排列方式。 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
</head>
<body>
<table border="1" bordercolor="red" cellpadding="10" cellspacing="20">
<tr><td colspan="2">悟</td><td>空</td></tr>
<tr><td rowspan="2">猪</td><td>八</td><td>戒</td></tr>
<tr><td>和</td><td>尚</td></tr>
</table>
</body>
</html>
属性 | 描述 |
action | 规定向何处提交表单的地址(URL)(提交页面)。 |
autocomplete | 规定浏览器应该自动完成表单(默认:开启)。 |
enctype | 规定被提交数据的编码(默认:url-encoded)。 |
method | 规定在提交表单时所用的 HTTP 方法(默认:GET)。 |
name | 规定识别表单的名称(对于 DOM 使用:document.forms.name)。 |
novalidate | 规定浏览器不验证表单。 |
target | 规定 action 属性中地址的目标(默认:_self)。 |
<?php
if(!empty($_GET)){
$name = $_GET['lastname'];
echo "提交上来的姓名为:".$name;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
</head>
<body>
<form>
姓名:<input type="text" name="lastname" />
<input type="submit" value="提交"/>
</form>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
$name = $_POST['name'];
echo "从11.html中传递过来的姓名为:".$name;
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |