Код: Выделить всё
function addBowler() {
var newBowler = document.getElementsByName('bowlersName').value;
var tr = document.createElement('tr');
var td = tr.appendChild(document.createElement('td'));
td.innerHTML = newBowler;
document.getElementById("bowlerList").appendChild(tr);
}Код: Выделить всё
Central Valley Lanes
2008 Bowling Teams
Bowler's name
Team Roster
Your team roster is empty
Подробнее здесь: https://stackoverflow.com/questions/162 ... ppendchild
Мобильная версия