La propiedad óptima del medidor DOM en HTML DOM se utiliza para establecer o devolver el valor del atributo óptimo en un indicador . El atributo óptimo en HTML indica el valor numérico óptimo para el indicador.
Debe estar dentro del rango, es decir, entre min y max. Cuando se usa con el atributo bajo y alto, da una indicación de dónde se considera preferible a lo largo del rango.
Sintaxis:
- Devuelve la propiedad óptima.
meterObject.optimum
- Se utiliza para establecer la propiedad óptima.
meterObject.optimum = number
Valores de propiedad: contiene un valor numérico que especifica el número de punto flotante que es el valor óptimo del indicador.
Valores devueltos: Devuelve un valor numérico que representa el número de punto flotante que es el valor óptimo del indicador.
Ejemplo-1: Este ejemplo devuelve una propiedad óptima .
html
<!DOCTYPE html> <html> <head> <title> DOM Meter optimum Property </title> </head> <body> <h1>GeeksforGeeks</h1> <h2> DOM Meter optimum Property: </h2> <!-- assigning id to meter with properties. --> <meter value="0.6" max="0.9" min="0.1" id="GFG" optimum="0.6" high="0.5" low="0.2"> </meter> <br> <br> <button onclick="Geeks()"> Submit </button> <p id="sudo" style="font-size:25px; color:green;"> </p> <script> function Geeks() { // Accessing 'meter' tag. var g = document.getElementById( "GFG").optimum; document.getElementById( "sudo").innerHTML = g; } </script> </body> </html>
Salida:
antes de hacer clic en el botón:
Después de hacer clic en el botón:
Ejemplo-2: Este ejemplo establece la propiedad óptima .
html
<!DOCTYPE html> <html> <head> <title> DOM Meter optimum Property </title> </head> <body> <h1> GeeksforGeeks </h1> <h2> DOM Meter optimum Property: </h2> <!-- assigning id to meter with properties. --> <meter value="0.6" max="0.9" min="0.1" id="GFG" optimum="0.6" high="0.5" low="0.2"> </meter> <br> <br> <button onclick="Geeks()"> Submit </button> <p id="sudo" style="font-size:25px; color:green;"> </p> <script> function Geeks() { // Accessing 'meter' tag. var g = document.getElementById( "GFG").optimum = "0.8"; document.getElementById( "sudo").innerHTML = "The value of the optimum attribute"+ " was changed to " + g; } </script> </body> </html>
Salida:
antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles:
- Google cromo 6
- MozillaFirefox 16
- Borde 18
- Safari 6
- Ópera 11
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA