我注意到,当在html页面中使用时,大多数开发人员会在id(#
)旁边添加井号#253
。是什么原因?
编辑:我不是在谈论嵌入在html标签中的id属性,而是关于表示方面,例如这是最终用户会看到的表格行:
id name family
#34 nina janet
答案 0 :(得分:0)
使用id
属性链接到页面中具有指定ID的元素:
例如
<h2><a id="top">Some heading</a></h2>
<p>Lots of text....</p>
<p>Lots of text....</p>
<p>Lots of text....</p>
<a href="#top">Go to top</a>
#
是一个id选择器。同样.
是类选择器。
有关选择器http://www.w3schools.com/cssref/css_selectors.asp