How to get the input's value with a button
By Tan Lee Published on Dec 18, 2024 349
To get the value of an input using a button, you can use JavaScript to retrieve the input's value when the button is clicked.
Here's a simple example:
<input type="text" id="myInput"> <button onclick="getValue()">Get Value</button> <script> function getValue() { // Get the input element var input = document.getElementById("myInput"); // Get the value of the input var value = input.value; // Display the value console.log(value); } </script>
In this example, there is an input field with the id "myInput" and a button with an onClick
event handler that calls the getValue()
function. Inside the function, getElementById()
is used to get the input element by its id, and the value
property is used to retrieve the input's value, which is stored in a variable called value
. The value can then be displayed using console.log
- How to use sweetalert2
- How to Pass string parameter in an onclick function
- How to format number with commas and decimal in Javascript
- What does 'use strict;' means in Javascript
- How to detect if caps lock is pressed in Javascript
- How to create a Custom Event in Javascript
- How to Check if an Object Has a Property Properly in JavaScript
- How to convert an Uint8Array to string in Javascript
Categories
Popular Posts
Bootstrap 4 Login Page Template
Nov 11, 2024
Simple Responsive Login Page
Nov 11, 2024
Material Dashboard Admin Template
Nov 17, 2024
Material Lite Admin Template
Nov 14, 2024