为什么我的超链接标签在浏览器上显示为纯文本?
在表结构中,我添加一个像这样的超链接:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
两个项目。正如 treaschf 所指出的,您需要使用双引号,对于离开您网站的任何链接,您需要在其前面加上 http://
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://
试试这样:
Try it like this:
您缺少 TD 元素,因此 HTML 无效。通过 HTML 验证器传递您的 HTML。
You are missing the TD element so the HTML is invalid. Pass your HTML through the HTML Validator.