Html link 左右的语音标记两次

Html Speech Marks around link twice

在 HTML 我有一个 link 看起来像这样:

<!-- Nav -->
        <nav id="nav" class="skel-layers-fixed">
            <ul>
                <li class="current"><a href="index.html">Home</a></li>
                <li>
                    <a href="">Cyclone</a>
                    <ul>
                        <li><a href=“our-design.html”>Our Design</a></li>
                        <li>
                            <a href="physical-factors.html">Physical Factors</a><li>
                        </li>
                    </ul>
                </li>
                <li><a href="no-sidebar.html">The Team</a></li>
            </ul>
        </nav>

当我运行 link 时,它错误地给我消息

No file exists at the address "MYUSER/site/""our-design.html""

带2个引号。

您正在(可能是不小心)使用了 Smart Quotes(或 "Curved Quotes")。看这段代码:

href=“our-design.html”

与此代码相比:

href="physical-factors.html"

请注意弯引号 - 它们通常来自从 Microsoft Word 或 Outlook 中复制和粘贴手写 HTML(出于各种原因,Office 产品会自动将标准引号“”转换为弯引号“” ).

只需将此行更改为标准引号即可:

<li><a href="our-design.html">Our Design</a></li>