Показать сообщение отдельно
  #29 (permalink)  
Старый 18.05.2009, 13:03
Аватар для x-yuri
Отправить личное сообщение для x-yuri Посмотреть профиль Найти все сообщения от x-yuri
 
Регистрация: 27.12.2008
Сообщений: 4,201

Цитата:
var text = document.createElement('input');
text.type='text';
только при создании input'ов, отличных от text нужно помнить, что
Цитата:
You must perform a second step when you use createElement to create the input element. The createElement method generates an input text box, because that is the default input type property. To insert any other kind of input element, first invoke createElement for input, and then set the type property to the appropriate value in the next line of code.
p.s. innerHTML скорее всего будет в html 5
Ответить с цитированием