I'm kind of a beginner to HTML,I was wondering why most of the web pages use "#" as a href value. I've previously used href value for opening some other websites.
答案 0 :(得分:1)
当使用#作为href值时,该链接将为您带来网站中已存在的内容
如下面的示例
<p>Click <a href="#intro">here</a></p>
<h1 id="intro">Introduction</h1>
点击&#34;在这里&#34;将带您进入&#34;简介&#34;标题
答案 1 :(得分:0)
&#34;#&#34;用于内部链接。
e.g。
#header, #footer.