Web前端-Web开发HTML基础1-input

一. 基础
1. 写一个输入框代码,类型为密码;
2. 写一个输入框代码,类型为密码;
3. 写一个输入框代码,类型为密码,名称为"password";
4. 写一个输入框代码,类型为密码,名称为"pAssword";
5. 写一个输入框代码,类型为密码,默认值为"helloworld";
6. 写一个输入框代码,类型为密码,默认值为"PASSWORD";
7. 写一个输入框代码,类型为密码,名称为"password",默认值为"password";
8. 写一个输入框代码,类型为密码,ID为"Password",默认值为"pAssword",提示行为"please password";
9. 写一个输入框代码,类型为复选框;
10. 写一个输入框代码,类型为复选框;
11. 写一个输入框代码,类型为复选框,名称为"checkbox";
12. 写一个输入框代码,类型为复选框,名称为"Checkbox";
13. 写一个输入框代码,类型为复选框,默认不选中;
14. 写一个输入框代码,类型为复选框,默认选中;
15. 写一个输入框代码,类型为复选框,名称为"checkbox",默认不选中,且选中时上传值"Hahaha";
16. 写一个输入框代码,类型为复选框,ID为"Checkbox",名称为"Checkbox",默认选中,且选中时上传值"Ohohoh";
17. 写一个输入框代码,类型为文本框;
18. 写一个输入框代码,类型为文本框;
19. 写一个输入框代码,类型为文本框,名称为"text";
20. 写一个输入框代码,类型为文本框,名称为"tExt";
21. 写一个输入框代码,类型为文本框,默认值为"text";
22. 写一个输入框代码,类型为文本框,默认值为"tExt";
23. 写一个输入框代码,类型为文本框,名称为"text",默认值为"text";
24. 写一个输入框代码,类型为文本框,ID为"tExt",默认值为"tExt",提示行为"please text";
25. 写一个输入框代码,类型为提交;
26. 写一个输入框代码,类型为提交;
27. 写一个输入框代码,类型为提交,名称为"submit"(往往没必要);
28. 写一个输入框代码,类型为提交,名称为"suBmit"(往往没必要);
29. 写一个输入框代码,类型为提交,默认值(显示值)为"submit";
30. 写一个输入框代码,类型为提交,默认值(显示值)为"suBmit";
31. 写一个输入框代码,类型为提交,名称为"submit",默认值为"submit";
32. 写一个输入框代码,类型为提交,ID为"submit",默认值为"SUBMIT";
33. 写一个输入框代码,类型为单选框,在happy和sad中选一个;
34. 写一个输入框代码,类型为单选框,在apple和pear中选一个;
35. 写一个输入框代码,类型为单选框,在happy和sad中选一个。选happy时能传给服务器happy,选sad时能传给服务器sad;
36. 写一个输入框代码,类型为单选框,在apple和pear中选一个。选apple时能传给服务器apple,选pear时能传给服务器pear;
37. 写一个输入框代码,类型为单选框,在A、B、C中选一个;
38. 写一个输入框代码,类型为单选框,在A、B、C中选一个。选A时能传给服务器A,选B时传B、选C时传C;
39. 写一个输入框代码,类型为单选框,现在A、B中选一个,再从happy、sad中选一个;
40. 写一个输入框代码,类型为单选框,现在A、B中选一个,再从happy、sad中选一个。同理选A传A、选B传B、选happy传happy、选sad传sad;
41. 写一个输入框代码,类型为按钮;
42. 写一个输入框代码,类型为按钮;
43. 写一个输入框代码,类型为按钮,默认值(显示值)为"按钮1";
44. 写一个输入框代码,类型为按钮,默认值(显示值)为"按钮2";
45. 写一个输入框代码,类型为数字;
46. 写一个输入框代码,类型为数字;
47. 写一个输入框代码,类型为数字,名称为"number";
48. 写一个输入框代码,类型为数字,名称为"nUmber";
49. 写一个输入框代码,类型为数字,最小值为1,最大值为5;
50. 写一个输入框代码,类型为数字,最小值为3,最大值为30000;
51. 写一个输入框代码,类型为数字,名称为"number",最小值为1,最大值为5;
52. 写一个输入框代码,类型为数字,名称为"nUmber",最小值为3,最大值为30000;
53. 写一个输入框代码,类型为电子邮件;
54. 写一个输入框代码,类型为电子邮件;
55. 写一个输入框代码,类型为电子邮件,名称为"email";
56. 写一个输入框代码,类型为电子邮件,名称为"Email";
57. 写一个输入框代码,类型为电子邮件,默认值为"email";
58. 写一个输入框代码,类型为电子邮件,提示行为"Email";
59. 写一个输入框代码,类型为日期;
60. 写一个输入框代码,类型为日期;
61. 写一个输入框代码,类型为日期,名称为"date";
62. 写一个输入框代码,类型为日期,名称为"daTe";
63. 写一个输入框代码,类型为日期,默认值为"1982-11-12";
64. 写一个输入框代码,类型为日期,默认值为"2004-02-24";
65. 写一个输入框代码,类型为日期,名称为"date",默认值为"2004-02-23";
66. 写一个输入框代码,类型为文件;
67. 写一个输入框代码,类型为文件;
68. 写一个输入框代码,类型为文件,名称为"file";
69. 写一个输入框代码,类型为文件,名称为"fIle";
二. 提高
1. password类型的input标签中,name必要嘛?
2. checkbox类型的input标签中,name必要嘛?
3. text类型的input标签中,name必要嘛?
4. submit类型的input标签中,name必要嘛?
5. radio类型的input标签中,name必要嘛?
6. button类型的input标签中,name必要嘛?
7. number类型的input标签中,name必要嘛?
8. email类型的input标签中,name必要嘛?
9. date类型的input标签中,name必要嘛?
10. file类型的input标签中,name必要嘛?
11. password类型的input标签中,value表示什么?
12. checkbox类型的input标签中,value表示什么?
13. text类型的input标签中,value表示什么?
14. submit类型的input标签中,value表示什么?
15. radio类型的input标签中,value表示什么?
16. button类型的input标签中,value表示什么?
17. number类型的input标签中,value表示什么?
18. email类型的input标签中,value表示什么?
19. date类型的input标签中,value表示什么?
20. file类型的input标签中,value表示什么?
21. input标签有结束标签嘛?
22. input标签有结束标签嘛?
三. 例子
1. password类型的input标签
2. checkbox类型的input标签
3. text类型的input标签
4. submit类型的input标签
5. radio类型的input标签
6. button类型的input标签
7. number类型的input标签
8. email类型的input标签
9. date类型的input标签
10. file类型的input标签


一. 基础
1. <input type="password">
2. <input type="password">
3. <input type="password" name="password">
4. <input type="password" name="pAssword">
5. <input type="password" value="helloworld">
6. <input type="password" value="PASSWORD">
7. <input type="password" name="password" value="password">
8. <input type="password" id="Password" value="pAssword" placeholder="please password">
9. <input type="checkbox">
10. <input type="checkbox">
11. <input type="checkbox" name="checkbox">
12. <input type="checkbox" name="Checkbox">
13. <input type="checkbox">
14. <input type="checkbox" checked>
15. <input type="checkbox" name="checkbox" value="Hahaha">
16. <input type="Checkbox" id="Checkbox" name="Checkbox" checked value="Ohohoh">
17. <input type="text">
18. <input type="text">
19. <input type="text" name="text">
20. <input type="text" name="tExt">
21. <input type="text" value="text">
22. <input type="text" value="tExt">
23. <input type="text" name="text" value="text">
24. <input type="text" id="tExt" value="tExt" placeholder="please text">
25. <input type="submit">
26. <input type="submit">
27. <input type="submit" name="submit">
28. <input type="submit" name="suBmit">
29. <input type="submit" value="submit">
30. <input type="submit" value="suBmit">
31. <input type="submit" name="submit" value="submit">
32. <input type="submit" id="submit" value="SUBMIT">
33. <input type="radio" name="mood">happy
     <input type="radio" name="mood">sad
34. <input type="radio" name="fruit">apple
     <input type="radio" name="fruit">pear
35. <input type="radio" name="mood" value="happy">happy
     <input type="radio" name="mood" value="sad">sad
36. <input type="radio" name="fruit" value="apple">apple
     <input type="radio" name="fruit" value="pear">pear
37. <input type="radio" name="choice">A
     <input type="radio" name="choice">B
     <input type="radio" name="choice">C
38. <input type="radio" name="choice" value="A">A
     <input type="radio" name="choice" value="B">B
     <input type="radio" name="choice" value="C">C
39. <input type="radio" name="choice">A
     <input type="radio" name="choice">B
     <input type="radio" name="mood">happy
     <input type="radio" name="mood">sad
40. <input type="radio" name="choice" value="A">A
     <input type="radio" name="choice" value="B">B
     <input type="radio" name="mood" value="happy">happy
     <input type="radio" name="mood" value="sad">sad
41. <input type="button">
42. <input type="button">
43. <input type="button" value="按钮1">
44. <input type="button" value="按钮2">
45. <input type="number">
46. <input type="number">
47. <input type="number" name="number">
48. <input type="number" name="nUmber">
49. <input type="number" min="1" max="5">
50. <input type="number" min="3" max="30000">
51. <input type="number" name="number" min="1" max="5">
52. <input type="number" name="nUmber" min="3" max="30000">
53. <input type="email">
54. <input type="email">
55. <input type="email" name="email">
56. <input type="email" name="Email">
57. <input type="email" value="email">
58. <input type="email" placeholder="Email">
59. <input type="date">
60. <input type="date">
61. <input type="date" name="date">
62. <input type="date" name="daTe">
63. <input type="date" value="1982-11-12">
64. <input type="date" value="2004-02-23">
65. <input type="date" name="date" value="2004-02-23">
66. <input type="file">
67. <input type="file">
68. <input type="file" name="file">
69. <input type="file" name="fIle">
二. 提高
1. password类型的input标签中,name必要
2. checkbox类型的input标签中,name必要
3. text类型的input标签中,name必要
4. submit类型的input标签中,name不必要
5. radio类型的input标签中,name必要
6. button类型的input标签中,name不必要
7. number类型的input标签中,name必要
8. email类型的input标签中,name必要
9. date类型的input标签中,name必要
10. file类型的input标签中,name必要
11. password类型的input标签中,value表示框中默认填写的值
12. checkbox类型的input标签中,value表示在选中的情况下,上传给服务器时,name变量所对应的值
13. text类型的input标签中,value表示框中默认填写的值
14. submit类型的input标签中,value表示显示出来的值
15. radio类型的input标签中,value表示在选中的情况下,上传给服务器时,name变量所对应的值
16. button类型的input标签中,value表示显示出来的值
17. number类型的input标签中,value表示框中默认填写的值
18. email类型的input标签中,value表示框中默认填写的值
19. date类型的input标签中,value表示框中默认填写的值
20. file类型的input标签中,value我不让你用
21. input标签没有结束标签
22. input标签没有结束标签
三. 例子
1. password类型的input标签,<input type="password" name="password" id="password" placeholder="Password">
2. checkbox类型的input标签,
<input type="checkbox" name="vehicle1" value="Bike"> I have a bike<br>  
<input type="checkbox" name="vehicle2" value="Car"> I have a car
3. text类型的input标签,<input type="text" name="firstname" id="firstname" placeholder="Your name">
4. submit类型的input标签,<input type="submit" value="Submit">
5. radio类型的input标签,<input type="radio" name="gender" value="male"> Male<br>  
<input type="radio" name="gender" value="female"> Female
6. button类型的input标签,<input type="button" value="Click Me!">
7. number类型的input标签,<input type="number" name="quantity" min="1" max="5">
8. email类型的input标签,<input type="email" name="email" id="email" placeholder="Your email">
9. date类型的input标签,<input type="date" name="birthday">
10. file类型的input标签,<input type="file" name="myFile">

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/45781.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ES快速开发,ElasticsearchRestTemplate基本使用以及ELK快速部署

最近博主有一些elasticsearch的工作&#xff0c;所以更新的慢了些&#xff0c;现在就教大家快速入门&#xff0c;并对一些基本的查询、更新需求做一下示例&#xff0c;废话不多说开始&#xff1a; 1. ES快速上手 es下载&#xff1a;[https://elasticsearch.cn/download/]()这…

Spring Boot集成Activity7实现简单的审批流

由于客户对于系统里的一些新增数据&#xff0c;例如照片墙、照片等&#xff0c;想实现上级逐级审批通过才可见的效果&#xff0c;于是引入了Acitivity7工作流技术来实现&#xff0c;本文是对实现过程的介绍讲解&#xff0c;由于我是中途交接前同事的这块需求&#xff0c;所以具…

uniapp开发钉钉小程序流程

下载开发工具 1、小程序开发工具 登录钉钉开发平台&#xff0c;根据自己的需求下载合适的版本&#xff0c;我这里下载的是Windows &#xff08;64位&#xff09;版本 小程序开发工具 - 钉钉开放平台 2、HBuilder X HBuilderX-高效极客技巧 新建项目及相关配置 新建项目 …

Llama - Prompting

本文翻译整理自&#xff1a;Prompting https://llama.meta.com/docs/how-to-guides/prompting/ 文章目录 制作有效的提示明确说明风格化格式化限制 提示使用 Zero- and Few-Shot 学习Zero-Shot PromptingFew-Shot Prompting 基于角色的提示思维链技术Self-Consistency检索-增强…

单臂路由组网实验,单臂路由的定义、适用情况、作用

一、定义 单臂路由是指通过在路由器的一个接口上配置许多子接口,从而实现原来相互隔离的不同VLAN之间的互通。 子接口:把路由器上的实际的物理接口划分为多个逻辑上的接口,这些被划分的逻辑接口就是子接口。 二、适用情况 用在没有三层交换机,却要实现不同VLAN之间的互…

Github07-16 Python开源项目日报 Top10

根据Github Trendings的统计,今日(2024-07-16统计)共有10个项目上榜。根据开发语言中项目的数量,汇总情况如下: 开发语言项目数量Python项目10C++项目1AutoGPT: 人工智能革命的先锋 创建周期:486 天开发语言:Python协议类型:MIT LicenseStar数量:164105 个Fork数量:435…

axios 下载大文件时,展示下载进度的组件封装——js技能提升

之前面试的时候&#xff0c;有遇到一个问题&#xff1a;就是下载大文件的时候&#xff0c;如何得知下载进度&#xff0c;当时的回复是没有处理过。。。 现在想到了。axios中本身就有一个下载进度的方法&#xff0c;可以直接拿来使用。 下面记录一下处理步骤&#xff1a; 参考…

深度学习 | CNN 基本原理

目录 1 什么是 CNN2 输入层3 卷积层3.1 卷积操作3.2 Padding 零填充3.3 处理彩色图像 4 池化层4.1 池化操作4.2 池化的平移不变性 5 全连接层6 输出层 前言 这篇博客不够详细&#xff0c;因为没有介绍卷积操作的具体计算&#xff1b;但是它介绍了 CNN 各层次的功能…

golang AST语法树解析

1. 源码示例 package mainimport ("context" )// Foo 结构体 type Foo struct {i int }// Bar 接口 type Bar interface {Do(ctx context.Context) error }// main方法 func main() {a : 1 }2. Golang中的AST golang官方提供的几个包&#xff0c;可以帮助我们进行A…

[杂谈] 关于 Mac 电脑使用 Logitech 鼠标导致 Vscode 侧键无法进行代码前进、回退的问题

我个人使用的是一台 14 寸的 Mac_Apple_M1&#xff0c;外接键盘显示器罗技的 MX Master 3 for Mac 的鼠标。 之前一直使用的 GoLand 开发&#xff0c;查看代码时进行代码跳转就很方便&#xff0c;滚轮键 进入函数方法&#xff0c;鼠标侧键进行前进、后退。看代码完全可以右手单…

【大模型入门】LLM-AI大模型介绍

大语言模型 (LLM) 背景 &#x1f379;大语言模型 (Large Language Model) 是一种人工智能模型, 它们通常包含数千亿甚至更多的参数&#xff0c;并在大规模数据集上进行训练。大语言模型可以处理多种自然语言任务&#xff0c;如文本分类、问答、翻译、对话等等。 自然语言模型…

qt explicit 啥意思

explicit 在 Qt 和 C 中是一个关键字&#xff0c;主要用于修饰类的构造函数。其含义和用法可以归纳为以下几点&#xff1a; 意义&#xff1a; explicit 英文直译为“明确的”、“显式的”。在 C 中&#xff0c;当一个构造函数只接受一个参数时&#xff0c;它可能会被编译器用于…

【Nail it】ROS1 ROS2 通信(ros2/ros1_bridge)

情况说明&#xff1a;目标是实现ros2容器和ros1主机的通信&#xff0c;可以起一个ros1容器作为桥梁&#xff08;若是在一个主机同时包含ros1&ros2&#xff0c;配置更加方便&#xff09;. 1.起一个 noetic 的容器 docker run -it --network host --name my_bridge ros:noe…

Java中的成员内部类

Java中的成员内部类&#xff08;也称为非静态内部类&#xff09;是定义在另一个类&#xff08;外部类&#xff09;内部的类。 这种内部类与它的外部类之间有着紧密的联系&#xff0c;主要体现在几个方面&#xff1a;它可以访问外部类的所有成员&#xff08;包括私有成员&#…

C++小白Python选手2小时入门C++

学习链接&#xff1a;C入门/2小时从C到C快速入门&#xff08;2018&#xff0c;C教程&#xff09; C在C语言的基础上增加了面向对象和通用算法语言特征。 C头文件不必是.h结尾&#xff0c;C头文件举例&#xff1a;cmath、cstdio注释&#xff1a;单行//、多行/**/为了防止名字冲…

MQ基础1

对应B站视频&#xff1a; MQ入门-01.MQ课程介绍_哔哩哔哩_bilibili 微服务一旦拆分&#xff0c;必然涉及到服务之间的相互调用&#xff0c;目前我们服务之间调用采用的都是基于OpenFeign的调用。这种调用中&#xff0c;调用者发起请求后需要等待服务提供者执行业务返回结果后…

【JavaScript脚本宇宙】强大的自然语言处理:六款JavaScript库详解

从语义到实体&#xff1a;深入了解JavaScript自然语言处理库 前言 随着人工智能和自然语言处理技术的飞速发展&#xff0c;JavaScript在这一领域也有了越来越多的应用。本文将介绍几个优秀的JavaScript库&#xff0c;它们专注于处理英语文本&#xff0c;并提供了丰富的功能和…

求立方体面积体积以及判断(c++)

代码&#xff1a; #include<iostream> using namespace std;class Cube { public:void setL(int l){m_L l;}int getL(){return m_L;}void setW(int w){m_W w;}int getW(){return m_W;}void setH(int h){m_H h;}int getH(){return m_H;}int calculateS(){return 2 * (…

netdata 监控软件安装与学习

netdata官网 netdata操作文档 前言&#xff1a; netdata是一款监控软件&#xff0c;可以监控多台主机也可以监控单台主机&#xff0c;监控单台主机时&#xff0c;开箱即用&#xff0c;web ui很棒。 环境&#xff1a; [root192 ~]# cat /etc/system-release CentOS Linux rel…

彻底清理Conda环境:使用conda remove命令的终极指南

彻底清理Conda环境&#xff1a;使用conda remove命令的终极指南 在Conda环境中&#xff0c;随着时间的推移&#xff0c;可能会积累大量不再需要的包和它们的依赖项。这不仅会占用宝贵的磁盘空间&#xff0c;还可能影响环境的性能。conda remove命令是Conda提供的一个强大工具&…