1
我得到了錯誤的玉輸入是自動關閉,不應該有內容。翡翠錯誤把變量作爲標籤
input(type='radio') This discount has
-if type == 1
| #{value} %
-else
| RM #{value}
任何想法?
我得到了錯誤的玉輸入是自動關閉,不應該有內容。翡翠錯誤把變量作爲標籤
input(type='radio') This discount has
-if type == 1
| #{value} %
-else
| RM #{value}
任何想法?
你不能放內容輸入。這個網站是無效
<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}
意外的標記 「縮進」? – Jennifer
刪除標籤前的空格 –