如何以角度4动态改变图像

时间:2017-08-02 05:35:55

标签: html angular material-design

export class AppComponent {
  title = 'app';    
  bttnclick(){    
     var a;
     a=(<HTMLInputElement>document.getElementById('browse1')).value    
     console.log(a);        //contains the name of image
     (<HTMLInputElement>document.getElementById('image2')).value=a;
  }
}

我是这个领域的初学者,我想通过改变角度浏览框中的值来改变图像源。

1 个答案:

答案 0 :(得分:0)

连接两个兄弟姐妹的最简单方法是使用模板变量(如#input此处:

<input #input>
<img src="/my/path/{{input.value}}">