Este atributo contiene tres tipos de línea de estado de acción , alternar e información sobre herramientas , cada uno de ellos se comporta de manera diferente. Este atributo solo es aceptado por la etiqueta <maction> .
Sintaxis:
<element accentunder="statusline|toggle|tooltip">
Valor de los atributos:
- línea de estado: este atributo muestra el valor calculado a través de la línea de estado.
- alternar: este atributo alterna el valor calculado.
- información sobre herramientas: este atributo muestra el valor calculado.
El siguiente ejemplo ilustra el atributo actiontype en HTML5:
HTML
<!DOCTYPE html> <html> <head> <title>HTML5 actiontype Attribute</title> </head> <body> <center> <h1 style="color:green">GeeksforGeeks</h1> <h3>HTML5 MatheML actiontype Attribute</h3> <math> <maction actiontype="toggle"> <mfrac> <mn>25</mn> <mn>10</mn> </mfrac> <mfrac> <mrow> <mn>5</mn> <mo>⋅</mo> <mn>5</mn> </mrow> <mrow> <mn>2</mn> <mo>⋅</mo> <mn>5</mn> </mrow> </mfrac> <mfrac> <mn>5</mn> <mn>2</mn> </mfrac> </maction> </math> <p>Click the number</p> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de tipo de acción HTML5 MathML se enumeran a continuación:
- Firefox
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA