1

如何在 Jade JS 中执行以下操作?

<div id="container">
    Temperature<p id = "temp">00.00</p>
</div>

即,创建一个没有换行符的嵌套标签。

我努力了:

// outputs newline
#container
    p#temp 00.00

// outputs literal p#temp text
#container p#temp 00.00

但这似乎不起作用。缩进也会产生解析错误。我查看了文档,但似乎没有产生任何结果。

4

4 回答 4

2

您可以使用:

#container
  |Temperature
  p#temp 00.00
于 2013-06-01T16:30:47.747 回答
1

你总是可以只输入 html 内联:

//thermometer.jade
#container Temperature<p id="temp">#{locals.tempValue}</p>
于 2013-06-01T18:38:52.000 回答
0

Aspan是要走的路,而不是p标签

#container
    span#temp 00.00
于 2013-06-01T15:19:05.170 回答
0

如果必须,您可以使用:

#container Temperature<p id='temp>00.00</p>

您的空白如何以及为什么重要?

于 2013-06-01T15:20:55.130 回答