Как преобразовать этот код в j-запрос
<!DOCTYPE html> <html> <head> <body> <h1> Celcius to Fahrenhiet</h1> <p>Insert a number into one of the input fields below:</p> <p><input id="c" onchange="convert('C')" onkeyup="convert('C')" type="number" > degrees Celsius</p> <p><input id="f" onkeyup="convert('F')" type="number"> degrees Fahrenheit</p> <script> function convert(degree) { var x; if (degree == "C") { x = document.getElementById("c").value * 9 / 5 + 32; document.getElementById("f").value = Math.round(x); } else if(degree == 'F'){ x = (document.getElementById("f").value -32) * 5 / 9; document.getElementById("c").value = Math.round(x); } } </script> </body> </html>
Что я уже пробовал:
я пробовал $ sign и многие другие атрибуты поля функции, но все пошло не так