prettyphoto lightbox html5验证错误

时间:2013-06-04 08:49:13

标签: javascript jquery jquery-plugins prettyphoto

我正在使用prettyphoto jQuery灯箱插件。我有以下html行

<a href="images/img1.jpg" rel="prettyPhoto"><img src="images/img1.jpg" alt="heading" /></a>

当我尝试验证html代码时,它会给我以下错误消息

  

属性rel的错误值prettyPhoto元素a:字符串prettyphoto不是注册关键字或绝对URL。

我该怎么做才能纠正这个问题。由于rel="prettyPhoto"是插件正常工作所必需的,我不明白如何解决这个问题

1 个答案:

答案 0 :(得分:1)

您可以使用jQuery添加rel属性

$('a').attr('rel', 'prettyPhoto');

但我不知道验证器是否检查原始HTML或检查最终的HTML。