Is it possible to use JavaScript inside handlebars.js template

前端 未结 1 476
我寻月下人不归
我寻月下人不归 2021-01-17 17:58

The description says it all. How to put a JavaScript script inside handlebars template.

I want to make a dynamic Paypal button for my website.



        
相关标签:
1条回答
  • 2021-01-17 18:38

    Try breaking up the "/script" part:

    <script ...><{{!}}/script>
    

    That technique is similar to older hacks like

    <script>document.write("<script>...<\/script>");</script>
    
    0 讨论(0)
提交回复
热议问题