标签: javascript jquery
如何存储下拉列表的旧值?
答案 0 :(得分:1)
请告诉我如何存储下拉列表的旧值。
一种可能性是使用.map()函数将它们存储在临时javascript数组中:
.map()
var oldValues = $('#myselect option').map(function() { return { value: $(this).val(), text: $(this).text() }; });
或使用.clone()方法完全克隆下拉列表:
.clone()
var dropdown = $('#myselect').clone(true);
然后将其还原。