作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您可以通过哪些方式在 CoffeeScript 中发表评论?
文档说您可以使用三个哈希符号来启动和关闭评论 block :
###
Comments
go
here
###
我发现有时可以使用以下两种格式
`// backticks allow for straight-JavaScript,
// but the closing backtick can't be on a comment line (I think?)
`
是否有更简单的方法在 CoffeeScript 中插入简短注释?
不要使用这种风格**
由于这得到了很多浏览,我想强调一下
/* Comment goes here */
当 /*
位于其自己的行时,会产生数学错误。
正如 Trevor 在对该问题的评论中指出的那样,这是一个正则表达式,不是评论!
最佳答案
使用单个 # 符号
# like this
一个角色看起来很小;)
另外:
###
This block comment (useful for ©-Copyright info) also gets
passed on to the browsers HTML /* like this! */
###
关于coffeescript - 如何在 CoffeeScript 中发表评论? "/* this */"不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7781685/
我是一名优秀的程序员,十分优秀!