开发者

Trying to create dynamic select boxes with Javascript and jQuery

开发者 https://www.devze.com 2023-01-12 01:56 出处:网络
I\'m not a front-end developer and I\'m trying to create a select box and add its options totally dynamically using Javascript and jQuery.

I'm not a front-end developer and I'm trying to create a select box and add its options totally dynamically using Javascript and jQuery.

I'm almost there but I am having a problem adding each new select to the div block (the number of selects is different at different times).

So far, I can either get the last select created in the following code displayed (but without span tags)

$('#meeting-eft-time-unit-data').append('<span>').ht开发者_JAVA百科ml(se).append('</span>');

or I just get the following list ...

$('#meeting-eft-time-unit-data').append('<span>' + se + '</span>');
object HTMLSelectElement][object HTMLSelectElement][object HTMLSelectElement][object HTMLSelectElement][object HTMLSelectElement]

Here's the code:

$.each(event_type_time_units,
 function(index, optionData) {
   var se = document.createElement("select");
   // give it a  name from 'name'
   se.name = 'eft[' + optionData.name + ']';
   // populate it from 'range_from .. range_to
   for(var i=optionData.range_from; i <= optionData.range_to; i++) {
     var option = new Option(i, i);
     if ($.browser.msie) {
       se.add(option);
     } else {
       se.add(option,null);
     }
   }

   // add display name to a label in a div block
   $('#meeting-eft-time-unit-headers').append('<span>' + optionData.display_name + '</span>');

   // add select to a div block
   /**
   This gives me the a good select but only the last one processed is displayed
   $('#meeting-eft-time-unit-data').append('<span>').html(se).append('</span>');
   or
   This gives the text as explained above
   $('#meeting-eft-time-unit-data').append('<span>' + se + '</span>');
   **/
 });


Try:

$('#meeting-eft-time-unit-headers').append($('<span/>').append(se));
0

精彩评论

暂无评论...
验证码 换一张
取 消