使用Jade向元素添加多个属性

时间:2011-12-06 20:54:55

标签: pug

在Jade中,input(type='text' placeholder='Type in text')会产生语法错误。什么是正确的语法?

2 个答案:

答案 0 :(得分:27)

你需要一个逗号:

input(type='text', placeholder='Type in text')

https://github.com/visionmedia/jade/blob/master/examples/attributes.jade

快乐的编码!

答案 1 :(得分:6)

您可以使用逗号。

input(type='text', placeholder='Type in text')

或新线。

input(type='text'
      placeholder='Type in text')

请参阅文档。 https://github.com/visionmedia/jade#attributes