简体   繁体   中英

jQuery templating Engine : Not able to render html output

My Templates are:

 <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> 

The output is html from database and not rendering to browser. The value is a html table as

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

I have used the below but not getting the result as text not html.

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

Please find the output getting as 在此处输入图片说明 The answer will be appreciated.. Thanks

Try:

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

See here for an example: https://github.com/BorisMoore/jquery-tmpl/blob/master/demos/step-by-step/0_tmpl-read-only/2_html-tag-source.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM