Цитата:
|
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