jQuery:Add options to a select from an array

$.each(selectArray, function(key, value) {
     $('#mySelect')
         .append($("<option></option>")
                    .attr("value",key)
                    .text(value));
});
本篇發表於 Jquery。將永久鏈結加入書籤。

回應已關閉。