Angular ngClass and click event for toggling class

后端 未结 7 1341
粉色の甜心
粉色の甜心 2020-12-02 18:30

In Angular, I would like to use ngClass and click event to toggle class. I looked through online but some are angular1 and there isn\'t any clear instruction or

7条回答
  •  盖世英雄少女心
    2020-12-02 18:46

    This should work for you.

    In .html:

    Some content

    In .ts:

    status: boolean = false;
    clickEvent(){
        this.status = !this.status;       
    }
    

提交回复
热议问题