Jump to content
  • 0

javascript заполнение полей формы


newone
 Share

Question

4 answers to this question

Recommended Posts

  • 0
javascript заполнение полей формы, при этом автоматически заполняются такие же поля в другой фрме

Это типа вопрос такой? Или констатация факта? Или диагноз?

это вопрос.

подскажите как написать,

или если есть, то где можно посмотреть

Link to comment
Share on other sites

  • 0

Первое что приходит в голову:

Можно создать класс который будет наблюдать за onclick onchange onkeyup и прочее поля X.

И передавать по событию value (ну или checked) этого поля в поле Y;

var ffObserver = function(f1, f2){
this.f1 = document.getElementById(f1);
this.f2 = document.getElementById(f2);

this.f1.onkeyup = this.f1.onclick = this.fill_other;
}
ffObserver.prototype.fill_other = function(event){
ну тут типа заполняется 2е поле
}
new ffObserver('id поля X', 'id поля Y');

Как то так...

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy