gpt4 book ai didi

javascript - 将变量作为标签的 Jade 错误

转载 作者:太空宇宙 更新时间:2023-11-04 02:18:20 25 4
gpt4 key购买 nike

我收到了一个 Jade 错误输入是自动关闭的,不应该有内容

input(type='radio') This discount has
-if type == 1
| #{value} %
-else
| RM #{value}

有什么想法吗?

最佳答案

您不能将内容放入输入中。该 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}

关于javascript - 将变量作为标签的 Jade 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34738697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com