我在页面上有一个包含以下div的组件
<div style=" width:400; height:400; float:left">
<div style="background-color:red; width:50%; height:50%; float:left">
</div>
<div style="background-color:blue; width:50%; height:50%; float:right">
</div>
<div style="background-color:green; width:50%; height:50%; float:left">
</div>
<div style="background-color:orange; width:50%; height:50%; float:right">
</div>
</div>
我在与
相同的页面上有另一个div<div class="eventBox eventBox__colorBar"></div>
当我点击上面任何一个div时,我想获得所选颜色并应用为第二个div的背景颜色。
如何处理angular2?
答案 0 :(得分:3)
您可以使用以下代码
<div>
<div style="background-color:red; width:50%; height:50%;" (click)="readColor($event)"> XYZ</div>
<div style="background-color:blue; width:50%; height:50%; float:right" (click)="readColor($event)">blue</div>
<div style="background-color:green; width:50%; height:50%; float:left" (click)="readColor($event)">green</div>
<div style="background-color:orange; width:50%; height:50%; float:right" (click)="readColor($event)">black</div></div></div>
<div [style.background-color]="color">some text here</div>
</div>
打字稿方法
readColor(value){
this.color=value.srcElement.style['background-color'];
console.log(value.srcElement.style['background-color']);
}
<强> LIVE DEMO 强>