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