DoctorGester Posted January 4, 2011 Report Share Posted January 4, 2011 Итак, мне нужно изменить некое свойство textarea с помощью javascript. А именно добавить ей значение onkeyup. Пробовалdocument.getElementById("message").onkeyup("OnUp();")иdocument.getElementById("message").onkeyup = "OnUp();"Вот сама функция OnUpfunction OnUp(){ alert("1"); }; Link to comment Share on other sites More sharing options...
0 psywalker Posted January 4, 2011 Report Share Posted January 4, 2011 document.getElementById("message").onkeyup = OnUp;function OnUp(){ this.style.width = '200px'; }; Link to comment Share on other sites More sharing options...
0 DoctorGester Posted January 4, 2011 Author Report Share Posted January 4, 2011 Спасибо большое) Просьба прикрыть тему. Link to comment Share on other sites More sharing options...
Question
DoctorGester
Итак, мне нужно изменить некое свойство textarea с помощью javascript. А именно добавить ей значение onkeyup. Пробовал
и
Вот сама функция OnUp
Link to comment
Share on other sites
2 answers to this question
Recommended Posts