Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.7k views
in Technique[技术] by (71.8m points)

javascript - Find an element by its id in the html file

I have an array

items = [{
"id" : 1,
"name": "peter"},
{
"id" : 2,
"name": "john"}
    ...
]

I am trying to find an item in the html file by the id based on that, I am trying to hide and element.

It can be easily done in js file, but I am trying to see if there is an easy way to do it in html file


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can add a template selector to the element

<input #myElement>

Then you can add a reference in your ts file

@ViewChild('myElement') myInput: ElementRef<HtmlInputElement>;

Or even reference the element directly in the template

<button (click)="myElement>.focus()"></button>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...