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