Categories

Thursday, March 28, 2024
#919814419350 therichposts@gmail.com
Angular6

Angular Get Text Box value On Button Click

Angular Get Text Box value On Button Click - The Rich Post

Hello to all, welcome to therichpost.com. In this post, I will tell you, how to Get Angular TextBox value On Button Click?

I am doing this in Angular 6.

Here is the working and tested code for Get Angular textBox value on button click:
1. Here is the app.component.html file code:
<div class="jumbotron text-center">
  <h3>Angular Get Text Box value On Button Click:</h3>
</div>
<div class="container">
 <div class="form-group">
  <label for="usr">Name:</label>
  <input type="text" #titleInput class="form-control">
  </div>
  <button type="button" (click) = "showText(titleInput.value)" class="btn btn-primary">Show Button value!</button>
</div>

 

2. Here is the code for app.component.ts file:

 

import {Component } from '@angular/core';
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
showText(title:string) {
    if(title!="")
  {
     alert(title);
  }
  else
  {
   alert("Fill the name first!!!");
  }
  }
}

 And you are done, If have any query related to this post, then do ask questions or do comment below.

 

 

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

5 Comments

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.