HTML验证错误:元素a上的属性rel的错误值工具提示:未注册关键字工具提示

时间:2012-10-18 20:40:48

标签: validation rel

我是否应该关注以下HTML验证错误?

        …rel="tooltip" data-placement="bottom" data-original-title="Permalink"></a></li>
        Syntax of link type valid for <a> and <area>:
        A whitespace-separated list of link types listed as allowed on <a> and <area> in the HTML specification or listed as an allowed on <a> and <area> on the Microformats wiki without duplicate keywords in the list. You can register link types on the Microformats wiki yourself.

2 个答案:

答案 0 :(得分:4)

“rel”value tooltip不是html 5中的有效属性。

在代码中将rel属性替换为data-rel属性(绝对有效)。

示例:

$("a[rel]").tooltip();$("a[data-rel]").tooltip();

答案 1 :(得分:1)

HTML5中不允许使用reltooltip

您可以使用rel values listed in the HTML5 specregistered rel values in the microformats wiki

请注意,tooltip列在微格式wiki中(在POSH usage部分中),但不在“HTML5链接类型扩展”部分中。