執行 ❯
建立您
自己的
網站
×
改變方向
儲存程式碼
改變主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <title>Inches to Yards Length Converter</title> <body> <h2>Length Converter</h2> <p>Type a value in the Inches field to convert the value to Yards:</p> <p> <label>Inches</label> <input id="inputInches" type="number" placeholder="Inches" 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.027778; } </script> </body> </html>