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;
}
}
我是这个领域的初学者,我想通过改变角度浏览框中的值来改变图像源。
答案 0 :(得分:0)
连接两个兄弟姐妹的最简单方法是使用模板变量(如#input
此处:
<input #input>
<img src="/my/path/{{input.value}}">