HTML Button Id Attribute - Dofactory
Có thể bạn quan tâm
An id on a <button> tag assigns an identifier to the button.
The identifier must be unique across the page.
Example
#
An id attribute on a <button>.
Approve <button id="alert-button" onclick="alert('The request has been approved!');">Approve</button> Try it liveUsing id
#
The id attribute assigns an identifier to the <button> element.
The id allows JavaScript to easily access the <button> element.
It is also used to point to a specific id selector in a style sheet.
Tip: id is a global attribute that can be applied to any HTML element.
Syntax
#
<button id="identifier">Values
#
| Value | Description |
|---|---|
| identifier | A unique alphanumeric string. The id value must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens (-), underscores (_), colons (:), and periods (.). |
More Examples
#
A <button> with a unique id. Clicking the button will display its content.
Calculate Revenues Show content <button id="mybutton" onclick="alert('Calculations have started!');">Calculate Revenues</button> <br /> <button onclick="show();">Show content</button> <script> let show = () => { let element = document.getElementById("mybutton"); alert("Content = " + element.innerHTML); } </script> Try it liveCode explanation
The id attribute assigns a unique identifier to the button.
Clicking the button calls JavaScript which locates the button using the id.
Finally, the content of the button is displayed in an alert box.
Browser support
#
Here is when id support started for each browser:
Chrome | 1.0 | Sep 2008 |
Firefox | 1.0 | Sep 2002 |
IE/Edge | 1.0 | Aug 1995 |
Opera | 1.0 | Jan 2006 |
Safari | 1.0 | Jan 2003 |
You may also like
#
- Our HTML button Tag Reference
- Our HTML id Attribute Reference
- Our CSS Buttons Tutorial
Từ khóa » Html Button Properties Javascript
-
HTML DOM Button Object - W3Schools
-
HTML Button Tag - W3Schools
-
The Button Element - HTML: HyperText Markup Language | MDN
-
HTMLButtonElement - Web APIs | MDN
-
JavaScript Programmatically Create An HTML Button
-
HTML | DOM Button Object - GeeksforGeeks
-
Button Object JavaScript - Dottoro Web Reference
-
Learn Attributes Of HTML Button Tag - EduCBA
-
Button Type In HTML: Here's Why You Should Always Declare It »
-
Types And Styles In JavaScript Button Control - Syncfusion
-
Create Dynamic HTML Button Element With JavaScript/jQuery
-
HTML Button Hidden Attribute - Dofactory
-
HTML DOM Button Object - Javascript Reference
-
HTML DOM Button Type Property - W3Schools
Chrome
Firefox
IE/Edge
Opera
Safari