Home > Article > Web Front-end > How to use html command tag
html The command tag is used to represent commands that users can call. The e2b9f03cad787b9644e1f51fd23b7dac tag can define command buttons, such as radio buttons, check boxes, or buttons. The command element is only visible if it is inside a menu element.
#html How to use the command tag?
Function: Indicates the commands that the user can call.
Description:
e2b9f03cad787b9644e1f51fd23b7dac tag can define command buttons, such as radio buttons, check boxes or buttons. The command element is only visible if it is inside a menu element. Otherwise this element will not be displayed, but it can be used to specify keyboard shortcuts.
Note:
Currently only Internet Explorer 9 supports the e2b9f03cad787b9644e1f51fd23b7dac tag. The e2b9f03cad787b9644e1f51fd23b7dac tag is new in HTML 5.
html command tag usage example
<!DOCTYPE HTML> <html> <body> <menu> <command type="command">Click Me!</command> </menu> </body> </html>
The above is the detailed content of How to use html command tag. For more information, please follow other related articles on the PHP Chinese website!