我收到了玉的错误输入是自动关闭的,不应该有内容。
input(type='radio') This discount has
-if type == 1
| #{value} %
-else
| RM #{value}
有什么想法吗?
答案 0 :(得分:0)
你不能把内容输入。这个html无效
<input type="radio">This discount has 0</input>
可能你想要
label
input(type='radio')
| This discount has
- if (type == 1)
| #{value} %
- else
| RM #{value}
或者
input(type='radio')
span This discount has
- if (type == 1)
| #{value} %
- else
| RM #{value}