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