Javascript DOM HTML Output htmlFor Property get

Introduction

Get the relationship between the result of the calculation and the elements used in the calculation:

var x = document.getElementById("myOutput").htmlFor;

Click the button to display the value of the for attribute of the output element.

View in separate window

<!DOCTYPE html>
<html>
<body>

<form oninput="x.value=parseInt(a.value)+parseInt(b.value)">0
  <input type="range" id="a" value="50">100
  +<input type="number" id="b" value="50">
  =<output id="myOutput" name="x" for="a b"></output>
</form>/*from   w  ww . j a v  a  2s.c o  m*/
<button type="button" onclick="myFunction()">Test</button>

<p id="demo"></p>

<script>
function myFunction() {
  var x = document.getElementById("myOutput").htmlFor;
  document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>

The htmlFor property returns the value of the for attribute of an <output> element.

This property is read-only.




PreviousNext

Related