在Jade中,input(type='text' placeholder='Type in text')
会产生语法错误。什么是正确的语法?
答案 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')