HTML标签
2021-08-25 15:13:36 43 举报
AI智能生成
HTML常用标签标签
作者其他创作
大纲/内容
table表格标签
tr 行
td 单元格
th 标题
rowspan 跨行
colspan 跨列
form表单标签
action 要跳转的页面
method
get
post
reset 重置表单
<input type="submit">
submit 提交表单
a超链接标签
锚链接 跳转顶部 <a name="top"><a href= "#top">
网址链接 <a href="http://www.mi.com" title="小米小米" >小米官网</a>
打开链接的方式
_blank 新页面打开
_self 本页面打开 默认
分组
fieldset 分组
legend 分组标题
常用属性
maxlength 最大长度
required 必填属性
checked 单选|多选 默认选中
selected 下拉框的默认选中
placeholder 默认提示字
disabled 禁用
显示灰色,不能提交,不能修改
readonly 只读
不能修改,可以提交
列表标签
无序列表 ul
有序列表 ol
input标签
type
text 文本框
password 密码框
radio 单选框
checkbox 多选框
reset 重置表单
submit 提交表单
hidden 隐藏框
buttom 按钮
file 文件
不分组的type有
text,password,button,file,email
需要(按name)分组的
type radio, checkbox
下拉框select
<select name="颜色">
<!--selected="selected" 设置默认选中-->
<option value="1">红色</option>
<option value="1" selected="selected">黄色</option>
</select>
<!--selected="selected" 设置默认选中-->
<option value="1">红色</option>
<option value="1" selected="selected">黄色</option>
</select>
可换行文本框
<textarea name="textaera" id="" cols="30" rows="10">文本框</textarea>
多行文本域
下拉列表
其他标签
h1~h8标题标签 p段落标签 strong粗体 em斜体
img图片标签
<img src="resources/image/1.jpg">
alt="图片加载不出来时的文字"
title="悬停文字"
0 条评论
下一页