在点击Angular2上获取div中的类名

时间:2017-10-18 01:47:52

标签: angular

我正在尝试在div点击上获取附加到div的类的名称:

<div class='hello new fun' id="clckBtn" (click)="fireMyEvent($event)">Click me</div>

fireMyEvent(event){
    let elem = event.target;

    console.log(elem.classList)
}

输出为["hello", "new", "fun", value: "hello new fun"]

有没有什么方法可以直接在点击时获得数组中类的名称,而不会分割

0 个答案:

没有答案