7 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
var select = document.createElement("select");
var option = document.createElement("option");
select.setAttribute("onchange", "mod_auswahl\(\)");
select.appendChild(option);
document.getElementById('tabellenzeile').innerHTML = '';
document.getElementById('tabellenzeile').appendChild(select);
document.getElementById('auswahl').options[0] = new Option('A');
document.getElementById('auswahl').options[1] = new Option('B');
document.getElementById('auswahl').options[2] = new Option('C');
Quotedocument.getElementById('auswahl').options[0].setAttribute("text", "A");
Quotedocument.getElementById('auswahl').options[0].setAttribute("value", "A");
document.getElementById('auswahl').options[0] = new Option('newTextA','newValueA',false,true);
1
2
var idselect = "auswahl";
document.getElementById('tabellenzeile').innerHTML = "<select id=\\"" + idselect + "\\" name=\\"" + idselect + "\\" size=\\"1\\" onchange=\\"mod_auswahl()\\"><option selected>A</option><option>B</option><option>C</option></select>";
1
2
3
4
5
6
7
8
9
10
11
var select = document.createElement("select");
var option = document.createElement("option");
select.setAttribute("onchange", "mod_auswahl\(\)");
select.appendChild(option);
document.getElementById('tabellenzeile').innerHTML = '';
document.getElementById('tabellenzeile').appendChild(select);
select.options[0] = new Option('A','A',true,true);
select.options[1] = new Option('B','B',false,false);
select.options[2] = new Option('C','C',false,false);
7 Einträge, 1 Seite |