在Jade中,input(type =’text’placeholder =’输入文本’)会产生语法错误.什么是正确的语法?
解决方法
你需要一个逗号:
input(type='text',placeholder='Type in text')
https://github.com/visionmedia/jade/blob/master/examples/attributes.jade
快乐编码!