网页设计中哪些是标签?哪些是属性?input type text各是什么?

如题所述

网页中带一对尖括号的就是标签,其中,“<”这个标签后紧跟着的单词就是这个标签的名字,在标签名后面的,是该标签的属性,标签名与属性之间用空格隔开,如题,input是标签,这个标签是输入框,type是属性,顾名思义,type指的是类型,作用是指定这个输入框的类型,text是type的值,是文本的意思,指的是该输入框为文本框。
温馨提示:答案为网友推荐,仅供参考
第1个回答  推荐于2019-10-25

input 是标签,

input的属性有type,name,value等。

type指这个输入组件的类型,有text,password,file,checkbox,radio,hidden,submit,reset,button,image,number,range,search,tel,url,email,time,datetime,datetime-local,date,week,color。

注:从number开始,是HTML5 追加种类

本回答被网友采纳
第2个回答  2018-02-01
input 是标签,
input的属性有type,name,value等。
type指这个输入组件的类型,有text,password,file,checkbox,radio,hidden,submit,reset,button,image,number,range,search,tel,url,email,time,datetime,datetime-local,date,week,color。
注:从number开始,是HTML5 追加种类
相似回答