1
如何將價格數組添加到Jade中的第二個'td'標籤?我希望它是迭代。可能嗎?Jade迭代到HTML表格
- var item = ['Item1', 'Item2', 'Item3']
- var price = ['40', '90', '140']
table.pricetable
thead
tr
th item
th price
tbody
each a in item
tr
td #{a}
td ???
感謝, 西蒙
你2分鐘打我哈哈 –