html – 是否有一个“另一个“?

前端之家收集整理的这篇文章主要介绍了html – 是否有一个“另一个“?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果我有一个链接到另一个页面,另一个链接被放在里面,那可以吗?是否允许在 HTML5中,如果是,哪些浏览器支持它?

在Chrome 14.0.835.202中尝试这样做,我看到左侧的文本被链接,其次是#1链接,但其余的没有链接.

例:

<p>
 <a href="download?file=2">Example file.txt</a>
 [
  <a href="revision?file=2&id=8">This is an example revision that fixes bug 
   <a href="bug?file=2&id=1">#1</a>. 
   Version number updated.
  </a>
 ]
</p>

解决方法

根据 W3C specification for links HTML5

Content model: 07001,but there must be no 07002 descendant.

原文链接:https://www.f2er.com/html/230337.html

猜你在找的HTML相关文章