search
HomeWeb Front-endJS TutorialAccess elements in typescript
Access elements in typescriptAug 24, 2023 pm 06:45 PM

Access elements in typescript

In TypeScript, in order to access elements, or we can say HTML components, we use the Document Object Model (DOM). The DOM defines HTML and XML programming interfaces that visualize the document structure as a tree of nodes. Paragraphs, buttons, divs, headings, etc. are just a few examples of document elements represented by each node in the tree.

The document object in TypeScript acts as a portal to the DOM. This means we can easily access DOM elements using TypeScript. There are various ways to access elements, these are -

  • Use document.querySelector() method

  • Use document.getElementById() method

  • Use document.getElementsByClassName() method

  • Use document.getElementsByTagName() method

In this tutorial, we will discuss the first two methods, namely document,querySelector() and document.getElementById() methods.

Use getElementById() method

The document.getElementById() method is the most common method and the main method used to access HTML elements in TypeScript. This method takes as a parameter the id of the element the user wants to access and returns the element as an object.

For example, if you have an HTML element with the ID "myDiv", you can access it in TypeScript like this -

grammar

let myDiv = <HTMLElement>document.getElementById("myDiv");
//Manipulating the element by setting its innerHTML
myDiv.innerHTML = "Hello, World!";

Example

In this example, we have an HTML div element with the id "root". In the script, we use the document.getElementById() method to access the element by its id. This method takes the string "root" as parameter and returns the element as an object. We then assign this object to the variable root.

We used two buttons with click event handlers to execute the "changeText" and "changeBG" functions. These functions change the element's innerHTML text and background color respectively. Since TypeScript code cannot be used in HTML, we need to compile it first and then use the compiled JavaScript code with HTML.

TypeScript Code

The file in which we need to write TypeScript code and compile it.

let root = <HTMLElement>document.getElementById('root')
function changeText() {
   root.innerHTML = 'The text is changed!'
}
function changeBG() {
   root.style.background = '#b8f0e5'
}
</HTMLElement>

HTML code

HTML code is where we define web page elements.

<html>
   <body>
      <h2 id="Access-an-i-Element-i-in-TypeScript">Access an <i>Element</i> in TypeScript</h2>
      <button onclick="changeText()">Change Text</button>
      <button onclick="changeBG()">Change Background Color</button>
      <div id="root" style="padding: 10px; background: #f0ecb8">
         This is a Div element!
      </div>
      <script>
         //Compiled TypeScript File
         var root = document.getElementById('root')
         function changeText() {
            root.innerHTML = 'The text is changed!'
         }
         function changeBG() {
            root.style.background = '#b8f0e5'
         }
      </script>
   </body>
</html>

This method will return null if the element with the specified id does not exist, so it is important to check this before operating on the returned element.

Use querySelector() method

Another way to access DOM elements using TypeScript is to use the querySelector() and querySelectorAll() methods. These methods select elements via CSS selectors, similar to jQuery.

grammar

const el = <HTMLElement>document.querySelector('#myDiv');

Example

In this example, we use the querySelector() method to access HTML elements through TypeScript. We take an input field to provide the input and try to display the exact text on the web page by accessing the input field and the div element. We use the querySelector() method and pass the id of the input field and div element. We added an input event property on the input field to execute a function when the user types into it. This function is used to access both elements and change the text of the div to the exact text on the input field.

<html>
   <body>
      <h2 id="Access-an-i-Element-i-in-TypeScript">Access an <i>Element</i> in TypeScript</h2>
      <h4 id="Enter-your-text">Enter your text:</h4>
      <input oninput="changeInput()" id="inputField" type="text" />
      <div id="root" style="padding: 10px; background: #d5ed9c"></div>
      <script>
         //Compiled TypeScript File
         var root = document.querySelector('#root')
         var inputField = document.querySelector('#inputField')
         function changeInput() {
            root.innerHTML = inputField.value
         }
      </script>
   </body>
</html>

Output

Note that the getElementsByClassName, getElementsByTagName, and getElementsByName methods also allow you to access elements, but they return a collection of elements rather than a single element.

To access HTML elements in TypeScript, you can use the document object and its various methods (such as getElementById, querySelector, and querySelectorAll) to find the element you want to access and then operate on it as needed.

The above is the detailed content of Access elements in typescript. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Custom Google Search API Setup TutorialCustom Google Search API Setup TutorialMar 04, 2025 am 01:06 AM

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

Example Colors JSON FileExample Colors JSON FileMar 03, 2025 am 12:35 AM

This article series was rewritten in mid 2017 with up-to-date information and fresh examples. In this JSON example, we will look at how we can store simple values in a file using JSON format. Using the key-value pair notation, we can store any kind

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 jQuery Syntax Highlighters10 jQuery Syntax HighlightersMar 02, 2025 am 12:32 AM

Enhance Your Code Presentation: 10 Syntax Highlighters for Developers Sharing code snippets on your website or blog is a common practice for developers. Choosing the right syntax highlighter can significantly improve readability and visual appeal. T

8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

10  JavaScript & jQuery MVC Tutorials10 JavaScript & jQuery MVC TutorialsMar 02, 2025 am 01:16 AM

This article presents a curated selection of over 10 tutorials on JavaScript and jQuery Model-View-Controller (MVC) frameworks, perfect for boosting your web development skills in the new year. These tutorials cover a range of topics, from foundatio

What is 'this' in JavaScript?What is 'this' in JavaScript?Mar 04, 2025 am 01:15 AM

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!