html – ‘name’属性是否被认为是过时的锚标签?

前端之家收集整理的这篇文章主要介绍了html – ‘name’属性是否被认为是过时的锚标签?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Visual Studio不喜欢页内锚标签

Validation (XHTML 1.0 Transitional):
Attribute ‘name’ is considered
outdated. A newer construct is
recommended.

我以这种方式使用名称属性

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemalocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" xml:lang="en">
    ...
    <body>
        ...
        <p>On this page&hellip;</p>
        <ul>
            <li><a href="#one">Section One</a></li>
            ...
        </ul>
        ...
        <h2><a name="one">Section One</a></h2>
        ...
    </body>
</html>

真的有一种更现代化的做法吗?还是Visual Studio充满垃圾

解决方法

您应该使用id属性.以相同的方式工作,您不需要人工< a name = ...>,而是简单
<h2 id="one">Section One</h2>
原文链接:https://www.f2er.com/html/230554.html

猜你在找的HTML相关文章