获取您 自己的 网站 Result Size: 625 x 664
x
 
<!DOCTYPE html>
<html>
<title>Yards to Miles Length Converter</title>
<body>
<h2>Length Converter</h2>
<p>Type a value in the Yards field to convert the value to Miles:</p>
<p>
  <label>Yards</label>
  <input id="inputYards" type="number" placeholder="Yards" oninput="LengthConverter(this.value)" onchange="LengthConverter(this.value)">
</p>
<p>Miles: <span id="outputMiles"></span></p>
<script>
function LengthConverter(valNum) {
  document.getElementById("outputMiles").innerHTML=valNum*0.00056818;
}
</script>
</body>
</html>