HTML学习分享

常见的标签(二)

一、表单标签

1.form标签

form标签常与input标签连用

<form action="">
        <input type="text">
    </form>
常见属性

action属:跳转的路径

路径相对路径:源文件相对于目标文件的相对路径

..\CSDN\demol05.html

          绝对路径:

 C:\Users\xx\Desktop\前端\CSDN\demol05.html

method属性:用来明确表单提交的方式get(默认)、post(注:post请求较get请求更安全)

name属性:表单名称

二、表单元素

input标签:
<input type="" name="" id="" class="" value="">

type取值:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <form action="">
        <input type="text">
        <!-- 文本框 -->
        <input type="password">
        <!-- 密码框 -->
        <input type="submit">
        <!-- 提交按钮 -->
        <input type="radio">
        <!-- 单选按钮 -->
        <input type="checkbox">
        <!-- 多选按钮 -->
        <input type="reset">
        <!-- 重置按钮 -->
        <input type="button">
        <!-- 普通按钮 -->
        <input type="image">
        <!-- 图像按钮 -->
        <input type="file">
        <!-- 文件 -->
        <input type="hidden">
        <!-- 隐藏域 -->
        <input type="email">
        <!-- 邮箱域 -->
        <input type="color">
        <!-- 颜色域 -->
        <input type="date">
        <!-- 日期 -->
        <input type="time">
        <!-- 时间 -->
        <input type="datetime-local">
        <!-- 日期+时间 -->
        <input type="range">
        <!-- 进度条 -->
    </form>
</body>
</html>         


 

常见属性 

readonly:只读(不能修改)

checked:默认选择

disabled:禁用不可点击

autofocus:默认光标的位置

required:不能空白提交

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值