2015-12-15 72 views

回答

0

對於更多的功能,你可以嵌入表達經理到底郵件的HTML。

所以,像這樣的東西,它會顯示兩個div元素之一,具體取決於代碼爲「Q1」的問題的答案。

<div style="display:{if(Q1 == '1', 'block', 'none')};"> 
    <h2>Heading for Q1 == '1'</h2> 
    <p>Some more text for the end message...</p> 
</div> 
<div style="display:{if(Q1 == '2', 'block', 'none')};"> 
    <h2>Heading for Q1 == '2'</h2> 
    <p>Some more text for the end message...</p> 
</div> 
+0

感謝tpartner。它給了我不同的想法,在limesurvey中添加條件作爲初學者。它有幫助 – Fahad