2014-02-11 36 views
0

我的模板是:jQuery的模板引擎:無法呈現HTML輸出

<script id="tmplRiskInformation" type="text/x-jquery-tmpl"> 
    <div class=""> 
     {{tmpl(collection) "#tmplLimitsDeductible" }} 
    </div> 

</script> 
<script id="tmplLimitsDeductible" type="text/x-jquery-tmpl"> 
    <div> 
     ${LimitsDeductible} 
    </div> 

</script> 

輸出是HTML代碼的數據庫,而不是渲染到瀏覽器。該值是一個HTML表格

LimitsDeductible = "<table><tr><td>TEST TEST</td></tr></table>" 

我已經使用了下面,但沒有得到結果作爲文本不是HTML。

${html LimitsDeductible} 
{{html ${LimitsDeductible} }} 

請找到輸出得到儘可能 enter image description here 答案可以理解的..謝謝

回答