PDA

Просмотр полной версии : добавить option в select средствами js?


Chas
02.03.2006, 17:22
можно ли?

Skubent
02.03.2006, 17:30
document.write()
<element_id>.innerHTML
<select_id>.add()

Еще ?

KidsKilla
02.03.2006, 20:58
// создаём select:
var sel = document.createElement("select");
document.body.appendChild(sel);
sel.setAttribute("id", "select_"+n);
sel.setAttribute("name", n);
// создаём option:
var opt = null;
opt = document.createElement("option");
opt.setAttribute("value", "your value");
opt.appendChild(document.createTextNode("text in option"));
sel.appendChild(opt);

Chas
04.03.2006, 22:19
спасибо. особое спасибо 2KidsKilla за развернутый ответ :rolleyes: