运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <title>Yards to Meters Length Converter</title> <body> <h2>Length Converter</h2> <p>Type a value in the Yards field to convert the value to Meters:</p> <p> <label>Yards</label> <input id="inputYards" type="number" placeholder="Yards" oninput="LengthConverter(this.value)" onchange="LengthConverter(this.value)"> </p> <p>Meters: <span id="outputMeters"></span></p> <script> function LengthConverter(valNum) { document.getElementById("outputMeters").innerHTML=valNum/1.0936; } </script> </body> </html>