How to convert a string into a HTML element in Mithril?

前端 未结 3 628
情歌与酒
情歌与酒 2021-01-19 13:30

Suppose I have a string Text goes here.I need to use this string as a HTML element in my webpage. Any ideas on how to do

相关标签:
3条回答
  • 2021-01-19 13:50

    Try creating a container you wish to hold your span in.
    1. Use jQuery to select it.
    2. On that selection, call the jQuery .html() method, and pass in your HTML string.
    ($('.container').html(//string-goes-here), for example)

    You should be able to assign the inner HTML of the container with the string, resulting in the HTML element you want.

    Docs here.

    0 讨论(0)
  • 2021-01-19 14:06

    Mithril provides the m.trust method for this. At the place in your view where you want the HTML output, write m.trust( '<span class="msg">Text goes here</span>' ) and you should be sorted.

    0 讨论(0)
  • 2021-01-19 14:10

    Mithril it's powerfull thanks to the virtual dom, in the view you if you want to create a html element you use:

    m("htmlattribute.classeCss" , "value");
    

    So in your case:

    m("span.msg" , "Text goes here");
    
    0 讨论(0)
提交回复
热议问题