2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

TemplateSelectorの使い方

Posted at

概要

TemplateSelectorを使うと指定したDOM要素を取得できます。
Lightning web componentでは、DOM要素を取得する際にTemplateSelectorを使用することが推奨されており、windowsやdocumentを使うことは非推奨となっています。

ここでは、TemplateSelectorの使い方を記載します。

内容

html
<template> 
  <div>AAAAA</div> 
  <div>BBBBB</div> 
</template> 
javascript
import { LightningElement } from 'lwc'; 

export default class Example extends LightningElement { 
  renderedCallback() { 
    this.template.querySelector('div'); // return <div>AAAA</div>
    this.template.querySelector('span'); // return null 
    this.template.querySelectorAll('div'); // return [<div>AAAA</div>, <div>BBBB</div>] 
  } 
}

要素がないときはnullを応答する。
querySelectorAllを使うと、ヒットしたタグをすべて応答する。

参考

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?