为什么我的超链接标签在浏览器上显示为纯文本?

发布于 2024-08-13 00:29:14 字数 339 浏览 3 评论 0原文

在表结构中,我添加一个像这样的超链接:

<table>
    <tr>
        <a href='http://www.google.com'>link</a>
    </tr>
</table>

但它在浏览器(IE 或 Firefox)上显示为纯文本,如下所示:

<a href='www.google.com'>link</a>

不是链接点

谁能告诉我原因?谢谢。

In a table structure, I add a hyperlink like this:

<table>
    <tr>
        <a href='http://www.google.com'>link</a>
    </tr>
</table>

But it display as plain text on the browser(IE or firefox) like this:

<a href='www.google.com'>link</a>

not a link point.

who can tell me the reason? thankx.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

素染倾城色 2024-08-20 00:29:14

两个项目。正如 treaschf 所指出的,您需要使用双引号,对于离开您网站的任何链接,您需要在其前面加上 http://

<table>    
    <tr>        
        <td>
            <a href="http://www.google.com">link</a>
        </td>
    </tr>
</table>

Two items. As treaschf noted you need to use double quotes, and for any link leaving your site you need to preface it with http://

<table>    
    <tr>        
        <td>
            <a href="http://www.google.com">link</a>
        </td>
    </tr>
</table>
孤单情人 2024-08-20 00:29:14

试试这样:

<table>    
    <tr>        
        <td>
            <a href="http://www.google.com">link</a>
        </td>
    </tr>
</table>

Try it like this:

<table>    
    <tr>        
        <td>
            <a href="http://www.google.com">link</a>
        </td>
    </tr>
</table>
故事↓在人 2024-08-20 00:29:14

您缺少 TD 元素,因此 HTML 无效。通过 HTML 验证器传递您的 HTML。

You are missing the TD element so the HTML is invalid. Pass your HTML through the HTML Validator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文