说完了 id 和 class,我们再来说一下标签其他的属性应该怎么添加。jade 里添加其他属性和值的语法也和 zen coding 类似,我们需要在标签后面加上小括号(),然后按照(属性名=属性值)的格式写就好了,如果有多个属性,中间以逗号进行分割。
比如上面的 id 和 class 的写法我们就可以改写成:
h1(id="id",) this is a title. p(id="j-text",) this is a paragraph.
结果是一样的:
<h1>this is a title.</h1>
<p>this is a paragraph.</p>
说来说去还是这两个属性,烦了?那我们换一个吧:
a(herf="/index.html", title="this is a link.", target="_blank", data-uid="1000") index.html
编译结果为:
<a herf="/index.html" title="this is a link." target="_blank" data-uid="1000">index.html</a>
那么问题就来了,如果我们要写一个单属性应该怎么写?比如给表单元素添加 checked属性:
input(type="checkbox",, checked, value="全选")
编译结果为:
<input type="checkbox" checked="checked" value="全选"/>