How can I select an element in a component template?

后端 未结 12 2573
挽巷
挽巷 2020-11-21 06:56

Does anybody know how to get hold of an element defined in a component template? Polymer makes it really easy with the $ and $$.

I was just

12条回答
  •  春和景丽
    2020-11-21 07:27

     */
    import {Component,ViewChild} from '@angular/core' /*Import View Child*/
    
    @Component({
        selector:'display'
        template:`
    
         
         

    My name : {{myName}}

    ` }) export class DisplayComponent{ @ViewChild('myname')inputTxt:ElementRef; /*create a view child*/ myName: string; updateName: Function; constructor(){ this.myName = "Aman"; this.updateName = function(input: String){ this.inputTxt.nativeElement.value=this.myName; /*assign to it the value*/ }; } }

提交回复
热议问题