翡翠では、input(type='text' placeholder='Type in text')
に構文エラーが発生します。正しい構文は何ですか?翡翠を使用した要素への複数の属性の追加
input(type='text', placeholder='Type in text')
https://github.com/visionmedia/jade/blob/master/examples/attributes.jade
ハッピーコーディング:
翡翠では、input(type='text' placeholder='Type in text')
に構文エラーが発生します。正しい構文は何ですか?翡翠を使用した要素への複数の属性の追加
input(type='text', placeholder='Type in text')
https://github.com/visionmedia/jade/blob/master/examples/attributes.jade
ハッピーコーディング:
はカンマが必要です!
コンマを使用できます。
input(type='text', placeholder='Type in text')
または改行。
input(type='text'
placeholder='Type in text')
マニュアルを参照してください。 https://github.com/visionmedia/jade#attributes