4

我应该关注以下 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.
4

2 回答 2

4

“rel”值工具提示不是 html 5 中的有效属性。

rel在您的代码中用属性替换属性data-rel(这是绝对有效的)。

例子:

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

于 2013-10-13T07:59:46.847 回答
1

HTML5 中不允许该rel值。tooltip

您可以使用relHTML5 规范中列出的值,或微格式 wiki 中的注册rel值。

请注意,tooltip微格式 wiki(在POSH 使用部分)中列出了这一点,但未在“HTML5 链接类型扩展”部分中列出。

于 2012-10-19T10:45:56.260 回答