-1

谁能告诉我为什么这不在 HAML 中编译?

:javascript
  $(document).ready(function(){
    // Examples of how to assign the Colorbox event to elements
    $(".group1").colorbox({rel:'group1'});
    $(".group2").colorbox({rel:'group2'});
    $(".group3").colorbox({rel:'group3'});
    $(".group4").colorbox({rel:'group4'});
    $(".group5").colorbox({rel:'group5'});
    $(".group6").colorbox({rel:'group6'});
    $(".group7").colorbox({rel:'group7'});
    $(".group8").colorbox({rel:'group8'});
  });

我得到的错误是:

“第 33 行的语法错误:缩进不一致:1 个制表符用于缩进,但文档的其余部分使用 2 个空格缩进。使用 --trace 进行回溯。”

第 33 行是注释所在的位置。

我在 Mac 上使用 codekit

4

3 回答 3

0

要在 HAML 中进行评论,请仅使用一个正斜杠,并在斜杠之间放置一个空格 您的评论示例/如何将 Colorbox 事件分配给元素的示例

于 2015-04-17T19:30:51.247 回答
0

尝试这个:

#{ # this is your comment text 
}
于 2014-07-25T08:25:06.733 回答
0

尝试使用

- # Examples of how to assign the Colorbox event to elements

于 2014-07-31T21:28:19.063 回答