HTML display result in text (input) field?

后端 未结 4 1731
予麋鹿
予麋鹿 2021-01-01 03:08

I have a simple HTML form, with 3 input field, when you hit = button, it suppose to add 2 numbers that you typed in the first 2 input fields and display result in 3rd filed.

4条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-01 04:02

    Do you really want the result to come up in an input box? If not, consider a table with borders set to other than transparent and use

    document.getElementById('sum').innerHTML = sum;

提交回复
热议问题