目錄:html
Attributesjson
jade中的屬性和html中的屬性並無什麼太大區別, 值也和js的規則沒有什麼兩樣。數組
1. js表達式安全
jade: spa
- var authenticated = true
a(class=authenticated ? 'authed' : 'anon')
html:code
<a class="authed"></a>
2. 多屬性換行htm
jade:對象
input( type='checkbox' name='agreement' checked )
html:blog
<input type="checkbox" name="argeement" checked="checked" />
3. 非轉義屬性(Unescaped Attributes)jade
默認狀況下, 全部屬性都是轉義過的。這樣作是爲了安全起見,防止XSS攻擊。若是須要使用特殊字符,能夠使用"!="替代"="。
jade:
div(escaped="<code>") div(unescaped="<code>")
html:
<div escaped="<code>"></div> <div unescaped="<code>"></div>
Boolean Attributes
在jade中, 屬性值能夠是bool值(true or false), 不設置值則默認是true。
jade:
input(type='checkbox', checked)
input(type='checkbox', checked=true)
input(type='checkbox', checked=false)
input(type='checkbox', checked=true.toString())
html:
<input type="checkbox" checked="checked" /> <input type="checkbox" checked="checked" /> <input type="checkbox" /> <input type="checkbox" checked="true" />
Style Attributes
style屬性能夠是一個string也能夠是一個object。好比json格式的對象形式。
jade:
a(style={color: 'red', background:'green'})
html:
<a style="color:red;background:green"></a>
Class Attributes
class屬性能夠是一個string也能夠是一個定義的class的數組對象。
jade:
- var classes = ['foo', 'bar', 'baz']
a(class=classes)
a.bing(class=classes class=['bing'])
html:
<a class="foo bar baz"></a> <a class="bing foo bar baz bing"></a>
一樣能夠經過使用條件的形式來實現。
jade:
- var currentUrl = '/about'
a(class={active: currentUrl === '/'} href='/') Home
a(class={active: currentUrl === '/about'} href='/about') About
html:
<a href="/">Home</a> <a href="/about" class="active">About</a>
&Attributes
&attributes能夠將其兩邊的屬性對象都加入到元素當中。
jade:
- var attributes = {'data-foo': 'bar'} div#foo(data-bar='foo')&attributes(attributes)
html
<div id="foo" data-bar='foo' data-foo='bar'></div>
注: 在使用&attributes的狀況下, 它並無實現自動轉義。因此須要經過必定的手段來確保你的頁面不會出現XSS漏洞。