我们可以嵌套A' A' html中的标签

时间:2014-07-31 03:51:00

标签: html

我的HTML代码如下。

   <!DOCTYPE html>
    <html>
        <body>
            <a href="http://www.w3schools.com">w3schools
            <a href="http://www.google.com">google</a>
            some text
            <span>span text</span>
            </a>
        </body>
    </html>

但结果如下所示

<html>
    <head></head>
    <body>
        <a href="http://www.w3schools.com">
        w3schools
        </a><a href="http://www.google.com">google</a>
        some text
        <span>span text</span>
        enter code here
    </body>
</html>

这真的允许像这样嵌套。

2 个答案:

答案 0 :(得分:0)

嗨朋友你的问题有点令人困惑,但首先,嵌套的<a>标签不会显示预期的结果。您可以尝试使用列表标记。

可能这对你有用。

<!DOCTYPE html>
<html>
    <body>
        <ul><a href="http://www.w3schools.com">
                <li>w3schools</li>
                    <ul>
                        <li><a href="http://www.google.com">google</a></li>
                    </ul>
        </ul>
        some text
        <span>span text</span>
        </a>
    </body>
</html>

答案 1 :(得分:0)

不能 nest <a> tags

我不太确定你为什么要那样做:如果你想把句子的一部分或单词链接到不同的东西,你可以,但那不是它的方式完成:您只需在标记中包装您引用的部分,这是基本的HTML样式:

This is a t e st

<a href="http://stackoverflow.com">This</a> <a href="http://meta.stackoverflow.com">is</a> <a href="http://meta.stackexchange.com">a</a> <a href="http://stackexchange.com">t</a><a href="http://example.com">e</a><a href="http://google.com">st</a>