关于html的id属性?
小白
小白 2016-12-24 14:40:04
0
3
994
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
    <div id="box2">box2</div> 
    <div id="box1">box1</div>
</body>
</html>

id的属性在一个页面中不是唯一的吗?这里怎么定义了两个Id?

小白
小白

好好学习,天天向上!!!

reply all(3)
数据分析师

About the id attribute of html? -PHP Chinese website Q&A-About the id attribute of html? -PHP Chinese website Q&A

Please watch and learn.

阿神

 id的属性是唯一的,这里面定义了两个不同的id,每个id的属性都是唯一的,且只能用一次。

迷茫

不是说id不能定义多次,而是id的属性值必须唯一

<div id="box1">1</div>
<div id="box1">2</div>

这样就是错的。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template