html – Jade不会渲染复选框文本?

前端之家收集整理的这篇文章主要介绍了html – Jade不会渲染复选框文本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用编译的玉器将chekcBoxes输入放在我的html文件上,它呈现实际的复选框但不是文本,即
p.confirm
            input(type="checkBox",name="agree") 
              | I agree to the Terms & Conditions of this Company <br />
            input(type="checkBox",name="subscribe") 
              | Tick to recieve future communication from Company

我试过玉文档,但没有任何反应,谢谢

解决方法

输入标签没有子项.
p.confirm
    input(type="checkBox",name="agree")
    I agree to the Terms & Conditions of this Company
    br
    input(type="checkBox",name="subscribe")
    Tick to recieve future communication from Company
原文链接:https://www.f2er.com/html/228016.html

猜你在找的HTML相关文章