Jump to content
  • 0

Как добавить группу в Select


Sserg-135
 Share

Question

25 answers to this question

Recommended Posts

  • 0

это в какой модели так?

опции seleсt-а я делал так:

document.getElementById(Id).options[num_option]=new Option('valuu','text',false,false);

думаю что и optgroup делаются как-то так)

Это вы сделали смесь DOM Level 2 и DOM Level 0

Читайте больше про Level 2. Если с английским хорошо, то лучше посмотреть всякие уроки про манипуляциям с DOM

Link to comment
Share on other sites

  • 0

var select = document.getElementById('select');
var optgroup = document.createElement('optgroup');

try {
// IE6(7)
select.add(optgroup, select.options[null]);
} catch (e) {
select.add(optgroup, null);
}

// добавится группа в конец списка
// интерфейс такой: selectObject.add(option, before)

Link to comment
Share on other sites

  • 0


var select = document.getElementById('select');
var optgroup = document.createElement('optgroup');

try {
// IE6(7)
select.add(optgroup, select.options[null]);
} catch (e) {
select.add(optgroup, null);
}

// добавится группа в конец списка
// интерфейс такой: selectObject.add(option, before)

А где зесь название оптогрупы писать? и куда вложенные в эту группу опции Selecta добавлять?

Link to comment
Share on other sites

  • 0

Получилась-таки оптогруппа, просто т.к. она пока без названия, то FF ее просто не отобразил, а плагин Firebug в коде страницы ее уже показывает.

код практически такой-же, как написал Great Rash.

var optgroup = document.createElement('optgroup');
try {
// IE6(7)
document.getElementById(Id).add(optgroup, document.getElementById(Id).options[null]);
} catch (e) {
document.getElementById(Id).add(optgroup, null);
}

Спасибо.

А вот с названием оптогруппы (тэг LABEL)не совсем понял как установить. (если через setAttribute, то какой будет синтаксис?)?

помогите еще чуть-чуть)

Edited by Sserg-135
Link to comment
Share on other sites

  • 0

Рано радовался :facepalmxd:

теперь проблема очистить список от оптогрупп )))))

ибо

document.getElementById(Id).options.length=0

очищает только элементы списка, но никак не оптогруппы)

что нужно для этого сделать?

Link to comment
Share on other sites

  • 0

помог такой код:

var sel = document.getElementById(Id);
while (sel.childNodes.length) {
if (sel.firstChild.tagName == 'OPTGROUP') {
while (sel.firstChild.childNodes.length) {
sel.firstChild.removeChild(sel.firstChild.firstChild);
}
}
sel.removeChild(sel.firstChild);
}

полная очистка списка

Link to comment
Share on other sites

  • 0

И опять оказалось не все так просто )

создаю опции Select и оптогруппы в цикле:

for (i=0; i<result.length; i++)
{ .
.
.
// Выделяем признак оптгруппы
if (result[i]['code']=='***'){
//** создание optgroup
var optgroup = document.createElement('optgroup');
optgroup.label = result[i]['neighborhood']; // тэг label. заголовок оптгруппы
try {
// IE6(7)
document.getElementById(Id).add(optgroup, document.getElementById(Id).options[null]);
} catch (e) {
document.getElementById(Id).add(optgroup, null);
}
}
}

В FF все прекрасно создается, а в IE создается только одна- самая первая optgroup, а которые идут дальше цикле полностью игнорируются. Делаю все тоже самое без цикла (просто ставлю подряд два куска этого кода друг за другом с разными названиями optgroup.label ) и тоже создается только первая оптгруппа, а вторая (т.е. последующие) игнорируется.

В чем может быть проблема?

И кстати в Гугль-Хроме этот код совсем не работает

Edited by Sserg-135
Link to comment
Share on other sites

  • 0

пока пришел к выводу, что IE не хочет создавать подряд optgroup-ы через JS, между ними должен находится тэг <option value=nnn >...</option>, причем не созданный через скрипт JS (я его создаю таким кодом:

document.getElementById(Id).options[num_option]=new Option('опция N',value,false,false))

, а написанный непосредственно в html.

такая вот ерунда выходит

Link to comment
Share on other sites

  • 0

Чота .add() и правда не хочет работать как надо в ИЕ, да и в Хроме тоже...


<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>

<script type="text/javascript">
window.onload = function() {
var select = document.getElementById('test');

for (var i = 0; i < 10; i++) {
var group = document.createElement('optgroup');
group.label = 'group ' + i;

for (var j = 0; j < 3; j++) {
var opt = document.createElement('option');
opt.value = j;

try {
opt.innerText = 'option ' + j; // stupid IE7
} catch (e) {
opt.text = 'option ' + j;
}

group.appendChild(opt);
}

select.appendChild(group);
}
}
</script>
</head>
<body>

<select name="test" id="test"></select>

</body>
</html>

  • Like 1
Link to comment
Share on other sites

  • 0

Great Rash, теперь все сделал: опции добавляю через

document.getElementById(Id).options[num_option]=new Option('name','value', false, false);

а оптогруппы как в Вашем последнем коде через :

 document.getElementById(Id).appendChild(group);

пока работает и в лисе и в осле и в хроме

Еще раз спасибо!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy