La propiedad htmlFor de salida HTML DOM se utiliza para devolver el valor del atributo for de un elemento <Output>. El atributo htmlFor se utiliza para especificar la relación entre el resultado y el cálculo.
Sintaxis:
outputObject.htmlFor
Parámetro: Esta propiedad no acepta ningún parámetro.
Valor devuelto: Devuelve un element_id que representa la relación entre el resultado y el cálculo.
Ejemplo: este ejemplo devuelve una propiedad htmlFor.
html
<!DOCTYPE html> <html> <head> <title> HTML DOM Output htmlFor Property </title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2> HTML DOM Output htmlFor Property </h2> <form oninput="sumresult.value = parseInt(A.value) + parseInt(B.value) + parseInt(C.value)"> <input type="number" name="A" value="50" /> + <input type="range" name="B" value="0" /> + <input type="number" name="C" value="50" /> <br /> Submit Result: <output name="sumresult" id="geeks" for="A B C"> </output> <br> <br> </form> <Button onclick="myGeeks()">Submit</Button> <h2 id="sudo"></h2> <script> function myGeeks() { var x = document.getElementById("geeks").htmlFor; document.getElementById("sudo").innerHTML = x; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con HTML DOM Output htmlFor Property se enumeran a continuación:
- Google Chrome 10.0
- Firefox 4.0
- Ópera 11.0
- Safari 5.1
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA