TypeScript 中如何使用 querySelector()
要在 TypeScript 中使用 querySelector() 方法:
- 使用类型断言正确键入所选元素。
-
使用类型保护来确保变量不存储
null
。 - 访问任何特定于元素的属性。
下面是本文中示例的 index.html 文件。
index.html
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> </head> <body> <input id="message" name="message" type="text" value="Initial Value" /> <div class="box">Box 1</div> <div class="box">Box 1</div> <button data-id="btn">Click</button> <script src="./src/index.ts"></script> </body> </html>
这是相关的 TypeScript 代码。
src/index.ts
const input = document.querySelector('#message') as HTMLInputElement | null; if (input != null) { console.log(input.value); // 👉️ "Initial value" } // ------------------------------------------------------------- const box = document.querySelector('.box') as HTMLDivElement | null; console.log(box?.innerHTML); // 👉️ Box 1 // ------------------------------------------------------------- const button = document.querySelector( '[data-id="btn"]', ) as HTMLButtonElement | null; if (button != null) { console.log(button.innerText); // 👉️ "Click" }
querySelector()
方法的返回类型为 Element | null
。 如果 DOM 中不存在具有提供的选择器的元素,则该方法返回 null
值。
如果我们必须访问变量上的任何特定于元素的属性,我们必须使用类型断言来正确键入它
当我们有关于 TypeScript 无法知道的值的类型的信息时,使用类型断言。
我们有效地告诉 TypeScript 输入变量存储了一个 HTMLInputElement 或一个 null ,不用担心它。
在第一个示例中,我们将输入变量键入为 HTMLInputElement | null
。
这些类型一致地命名为
HTML***Element
。 一旦你开始输入HTML..
,你的 IDE 应该能够帮助你自动完成。
一些常用的类型有:HTMLInputElement
、HTMLButtonElement
、HTMLAnchorElement
、HTMLImageElement
、HTMLTextAreaElement
、HTMLSelectElement
等。
我们使用了一个简单的 if 语句作为类型保护,以确保输入变量在访问其属性之前不存储 null。
src/index.ts
const input = document.querySelector('#message') as HTMLInputElement | null; // 👉️ 输入的类型为 HTMLInputElement | null if (input != null) { // 👉️ input 在此处具有 HTMLInputElement 类型 console.log(input.value); // 👉️ "Initial value" }
TypeScript 知道输入变量在 if 块中有一种 HTMLInputElement 类型,并允许我们直接访问它的 value 属性。
在类型断言中包含 null 始终是最佳实践,因为如果没有找到具有提供的选择器的元素,则 querySelector
方法将返回 null。
如果引用等于 null 或 undefined,我们还可以使用可选链接 (?.)
运算符进行短路。
src/index.ts
const box = document.querySelector('.box') as HTMLDivElement | null; console.log(box?.innerHTML); // 👉️ Box 1
如果引用等于 null 或 undefined,则可选的链接运算符会短路返回 undefined。
换句话说,如果 box 变量存储了一个 null 值,我们就不会尝试访问 null 上的 innerHTML 属性并获得运行时错误。
如果我们不使用 document.querySelector
方法的类型断言,则变量的类型将是 Element | null
。
src/index.ts
// 👇️ 常量按钮: Element | null const button = document.querySelector('[data-id="btn"]'); if (button != null) { // ⛔️ 这里不能访问 innerText console.log(button.innerText); }
由于 Element 类型上不存在 innerText 属性,因此我们不允许访问它。
如果我们不想将变量键入为特定元素,则可以使用更广泛的 HTMLElement
类型。
src/index.ts
// 👇️ 常量按钮: HTMLElement | null const button = document.querySelector('[data-id="btn"]') as HTMLElement | null; if (button != null) { console.log(button.innerText); }
HTMLElement
类型比 Element
类型有更多的属性。 例如,HTMLElement
接口公开了诸如 innerText、style 等属性。
相关文章
在 TypeScript 中使用 try..catch..finally 处理异常
发布时间:2023/03/19 浏览次数:181 分类:TypeScript
-
本文详细介绍了如何在 TypeScript 中使用 try..catch..finally 进行异常处理,并附有示例。
在 TypeScript 中使用 declare 关键字
发布时间:2023/03/19 浏览次数:97 分类:TypeScript
-
本教程指南通过特定的实现和编码示例深入了解了 TypeScript 中 declare 关键字的用途。
在 TypeScript 中 get 和 set
发布时间:2023/03/19 浏览次数:172 分类:TypeScript
-
本篇文章演示了类的 get 和 set 属性以及如何在 TypeScript 中实现它。
在 TypeScript 中格式化日期和时间
发布时间:2023/03/19 浏览次数:161 分类:TypeScript
-
本教程介绍内置对象 Date() 并讨论在 Typescript 中获取、设置和格式化日期和时间的各种方法。
在 TypeScript 中返回一个 Promise
发布时间:2023/03/19 浏览次数:182 分类:TypeScript
-
本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。
在 TypeScript 中定义函数回调的类型
发布时间:2023/03/19 浏览次数:221 分类:TypeScript
-
本教程说明了在 TypeScript 中为函数回调定义类型的解决方案。为了程序员的方便和方便,实施了不同的编码实践指南。
在 TypeScript 中把 JSON 对象转换为一个类
发布时间:2023/03/19 浏览次数:110 分类:TypeScript
-
本教程演示了如何将 JSON 对象转换为 TypeScript 中的类。
使用 NPM 将 TypeScript 更新到最新版本
发布时间:2023/03/19 浏览次数:130 分类:TypeScript
-
本教程说明了如何使用 npm 更新到最新版本的 TypeScript。这将为如何使用 npm 将 TypeScript 更新到最新版本提供完整的实际示例。
使用 jQuery 和 TypeScript
发布时间:2023/03/19 浏览次数:151 分类:TypeScript
-
本教程提供了使用 jQuery 和 TypeScript 的基本理解和概念。