属性herf不是元素的有效属性' a'

时间:2014-08-06 21:43:37

标签: html asp.net

所有

HREF不起作用。它甚至没有显示手指/指针。

我在href和目标下面有一条绿线,它说:

href =>属性herf不是元素'a'的有效属性 target =>仅当href存在时才允许属性

有什么问题?文字“Get Lat& Long”应该是一个超链接,但它似乎是一个文本!

我的代码

<td class="auto-style27">
    <asp:Label ID="lblBusWebAdd0" runat="server" Font-Bold="True" Font-Names="Arial" ForeColor="#666666" Text="Latitude"></asp:Label>
    &nbsp;
    <asp:TextBox ID="txtAddBusLat" runat="server" Width="158px"></asp:TextBox> <a herf="http://www.gps-coordinates.net/" target="_blank">Get Lat&Long</a>
</td>

提前谢谢〜

1 个答案:

答案 0 :(得分:5)

您在代码中写道

<a herf="

然而,这是正确的:

<a href="

拼写很重要。