Two forms share same input

后端 未结 2 760
悲&欢浪女
悲&欢浪女 2021-02-07 08:17

How can two forms share the same inputs? I have two forms, one for two different paths... if i wanted to get the user to enter their name, but only once.... how could both forms

2条回答
  •  逝去的感伤
    2021-02-07 09:07

    Using JavaScript you could set one field's value to another's.

    Something like:

    document.form2.input.value = this.value;
    

    Put that code in the onblur event for your first form.

    So:

提交回复
热议问题