我是否应该关注以下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.
答案 0 :(得分:4)
“rel”value tooltip不是html 5中的有效属性。
在代码中将rel
属性替换为data-rel
属性(绝对有效)。
示例:强>
$("a[rel]").tooltip();
至$("a[data-rel]").tooltip();
答案 1 :(得分:1)
HTML5中不允许使用rel
值tooltip
。
您可以使用rel
values listed in the HTML5 spec或registered rel
values in the microformats wiki。
请注意,tooltip
列在微格式wiki中(在POSH usage部分中),但不在“HTML5链接类型扩展”部分中。