2013-01-19 48 views
0

this answer,我能與Firefox插入一些文本這樣插入HTML與XBL

CSS

body 
{ 
    -moz-binding: url(foo.xml#bar); 
} 

foo.xml

<bindings xmlns="http://www.mozilla.org/xbl"> 
    <binding id="bar"> 
    <content> 
     Hello world 
    </content> 
    </binding> 
</bindings> 

但是我無法找到一個辦法使用此方法插入HTML而不是文本。

回答

0

看來,我只需要申報XHTML namespace

<bindings xmlns="http://www.mozilla.org/xbl" 
    xmlns:html="http://www.w3.org/1999/xhtml"> 
    <binding id="bar"> 
    <content> 
     <html:b> 
     Hello world 
     </html:b> 
    </content> 
    </binding> 
</bindings>