Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果链接看起来像这样,它是否是有效的 html:
<a href="http://www.example.com/home.php?a=2&b=5">example</a>
或者应该是:
<a href="http://www.example.com/home.php?a=2&b=5">example</a>
URL 是 HTML 属性中的一个值,因此&字符应该是 HTML 编码的,最常见的是使用 HTML 实体&:
&
&
<a href="http://www.example.com/home.php?a=2&b=5">example</a>
您也可以使用 HTML 实体&代替&.
&