Javascript DOM HTML Input Text compare defaultValue and value property

Introduction

An example that shows the difference between the defaultValue and value property:

View in separate window

<!DOCTYPE html>
<html>
<body>
Name: <input type="text" id="myText" value="Mickey">
<button type="button" onclick="myFunction()">Test</button>

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

<script>
function myFunction() {/*  w  w w.  j a  v a  2s . co  m*/
  var x = document.getElementById("myText");
  var defaultVal = x.defaultValue;
  var currentVal = x.value;

  if (defaultVal == currentVal) {
    document.getElementById("demo").innerHTML = "Default value and current value is the same: "
    + x.defaultValue + " and " + x.value
    + "<br>Change the value of the text field to see the difference!";
  } else {
    document.getElementById("demo").innerHTML = "The default value was: " + defaultVal
    + "<br>The current value is: " + currentVal;
  }
}
</script>

</body>
</html>



PreviousNext

Related