用jQuery向SELECT作为JS对象添加选项的最佳方法是什么?
<select>
selectValues = { "1": "test 1", "2": "test 2" };for (key in selectValues) { if (typeof (selectValues[key] == 'string') { $('#mySelect').append('<option value="' + key + '">' + selectValues[key] + '</option>'); }}
一个干净/简单的解决方案:
$.each(selectValues, function(key, value) { $('#mySelect') .append($('<option>', { value : key }) .text(value));});
慕无忌1623718
人到中年有点甜
相关分类