9

我试图使用编译的玉将 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

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

4

2 回答 2

23

我不确定接受的答案如何工作,因为如果没有转义,Jade 会将文本解释为标签。

这两种方法都可以代替:

p.confirm
  label
    input(type="checkbox", name="agree")
    | I agree to the Terms & Conditions of this Company
  br
  label
    input(type="checkbox", name="subscribe")
    = " Tick to recieve future communication from Company"

需要标签才能使文本可点击。

于 2013-12-12T13:38:18.640 回答
3

输入标签没有子标签。

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
于 2012-08-05T15:27:15.870 回答