Jump to content
  • 0

не иннерит


-O-J-A-
 Share

Question

Делаю js, возникла проблема, не работает такая конструкция в ие:

document.getElementById("users").innerHTML=document.getElementById("users").innerHTML+"<option value="+data.response[i].uid+">"+data.response[i].first_name+" "+data.response[i].last_name+"</option>";

users это select, сама проблема в том что в него не грузятся опшены.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
Делаю js, возникла проблема, не работает такая конструкция в ие:

document.getElementById("users").innerHTML=document.getElementById("users").innerHTML+"<option value="+data.response[i].uid+">"+data.response[i].first_name+" "+data.response[i].last_name+"</option>";

users это select, сама проблема в том что в него не грузятся опшены.

Известная проблема ИЕ. Обойти можно путем создания опшинов по-одному через new Option

Link to comment
Share on other sites

  • 0

function insertOption(select, text, value) {
var opt=document.createElement('option');
opt.text = text || '';
opt.value = value || '';

try {
select.add(opt, null); // all
} catch(e) {
select.add(opt); // IE
}
}

var sel = document.getElementsByTagName('select')[0];

for (var i = 0; i < 20; i++) {
insertOption(sel, '#' + i, i);
}

По идее так должно работать, не проверял...

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