美文网首页
angular 模板里面绑定属性

angular 模板里面绑定属性

作者: 晨曦Bai | 来源:发表于2019-06-23 11:39 被阅读0次

    1. 绑定静态属性

    <div title='this is a static property for the div '> static property example </div>

    2. 绑定动态属性

    • 动态属性绑定要用 []
    1. // app.component.ts
    label='this is a dynamic property for the div' 
    
    1. // app.component.html
      <div [title]='label'> dynamic property example </div>

    3. 绑定html

    • 绑定解析html, 要用 [innerHTML]
    1. //app.component.ts
    htag='<h2> this is the second level title</h2>'
    
    1. // app.component.html

    <div [innerHTML]='htag' class='colorh'> dynamic property example </div>

    1. // app.component.css
    .colorh  {
    color: red;
    }
    

    4. 引入图片

    <img src='assets/images/001.png' alt='upload failed'>

    <img src='http://sdfdfsd'>

    //  app.component.ts
    public picUrl='http://sdsdfdsf'
    

    <img [src]=picUrl>

    相关文章

      网友评论

          本文标题:angular 模板里面绑定属性

          本文链接:https://www.haomeiwen.com/subject/emqiqctx.html