我有一个jquery脚本,它使用数组将下拉选择框的选项转换为ul列表项。下拉列表中的每个选项都有一个数字选项值,例如
<option value="12">Size S</option>
<option value="34">Size M</option>
<option value="7">Size L</option>
转换为类似
的列表<ul>
<li class="opt_12">Size S</li>
<li class="opt_34">Size M</li>
<li class="opt_7">Size L</li>
</ul>
在Firefox中,一切都按预期工作,列表项的显示顺序与下拉选项相同。但是,IE和Chrome似乎按降序顺序按选项值对数组的选项值进行排序。 因此,与下拉列表中的大小顺序S,M,L,XL不同,Chrome和&amp; IE我得到一个类似XL,M,S,L的列表。
我注意到一件事:当我使用var options = Array;
构建数组时,Firefox会以正确的顺序显示列表元素,Chrome和IE会显示错误的列表元素。当我使用var options = [];
时,所有三个经过测试的浏览器都会以错误的顺序显示列表。
下面是我用来将下拉列表转换为列表项的脚本的相关代码:
(function($) {
$.fn.visualAttribute = function(options) {
var defaults = {
useTitle: false,
attrClicked : function(data) {
return true;
},
attrUpdated : function(data) {
}
};
var settings = $.extend(defaults, options);
//loop all attributes
var selectbox_counter = 0;
return this.each(function() {
//use counter for a unique class for each wrapper
selectbox_counter++;
//store reference to attribute selectbox
var selectbox = $(this);
//hide the default dropdown (but keep it in dom for posting the required values)
$(this).css('position', 'absolute').css('left', '-100000px').show();
//insert wrapper for options
var wrapper = $('<ul />')
.attr("class", "la_wrapper")
.attr("id", "la_wrapper_" + selectbox_counter)
.appendTo($(this).parent());
$(this).parent().append('<div style="clear:both"></div>');
if (selectbox.attr("id") != "") {
wrapper.attr("rel", selectbox.attr("id"));
}
//store all values of the dropdown in an array
var options = [];
var option_counter = 0;
var description = '';
selectbox.children('option').each(function() {
option_counter++;
if (option_counter == 1) {
//first option contains the description, e.g. 'please select size'
description = $(this).text();
}
//only use option if has a value
var value = $(this).val();
if (value != '') {
options[value] = ({value : value, text : $(this).text()});
}
});
//loop all stored options and create custom html
if (options.length) {
for (var index in options) {
if (!isNaN(index)) {
var value = index;
var text = options[index].text;
if (!settings.useTitle) {
description = '';
}
wrapper.append('<li title="' + description + '" class="opt_' + value + '"><a href="#' + value + '">' + text + '</a></li>');
}
}
}
//set custom options to same value as current selectbox value (only needed in rare cases)
var current_value = selectbox.val();
if (current_value > 0) {
$("#la_wrapper_" + selectbox_counter + ' li.opt_' + current_value + ' a').addClass('selected');
}
//event handler for catching a clicked attribute
$("#la_wrapper_" + selectbox_counter + ' li a').click(function() {
var value = $(this).attr("href").split('#')[1];
//use callback
if (!settings.attrClicked(options[value])) {
return false;
}
//set value and class
selectbox.val(value);
$("#la_wrapper_" + selectbox_counter + ' .selected').removeClass('selected');
$(this).addClass('selected');
//use callback
settings.attrUpdated(options[value]);
return false;
});
});
};
})(jQuery);
如何阻止IE和Chrome“自动分类”数组并保留/转移结果列表中下拉选项的原始顺序?
答案 0 :(得分:2)
如果订单很重要,请不要使用该选项的value
作为数组键,只需执行append
(PS使用[]
,而不是Array
- 这不是你认为它正在做的事情)
var options = [];
var option_counter = 0;
var description = '';
selectbox.children('option').each(function() {
option_counter++;
//only use option if has a value
var value = $(this).val();
if ( value ) {
options.push({value : value, text : $(this).text()});
}
});
然后,在循环时,完全摆脱if (options.length)
,并使用常规for循环:
for (var i=0; i<options.length; i++) {
var value = options[i].value;
var text = options[i].text;
if (!settings.useTitle) {
description = '';
}
wrapper.append('<li title="' + description +
'" class="opt_' + value +
'"><a href="#' + value + '">' + text +
'</a></li>');
}
答案 1 :(得分:1)
使用以下方法迭代数组时:
for (var index in options)
你没有获得有保证的订单,因为你只是迭代一个对象的属性(而不是数组索引),这些属性按规范没有保证顺序。你应该使用这个:
for (var i = 0; i < options.length; i++)
以数组顺序迭代数组。第一种形式不按特定顺序迭代对象的属性。后一种形式以数组索引顺序迭代数组元素(它以数组顺序为您提供实际的数组元素)。
此外,您使用以下方法声明一个数组:
var options = [];
或
var options = new Array();
您不应该使用:
var options = Array;
答案 2 :(得分:0)
您的问题是您使用for...in
枚举属性。
到目前为止,ECMAScript中未定义对象(包括数组)属性的枚举顺序。有一个建议让ECMAScript 6按如下方式定义顺序,或多或少:“首先是所有属性,其名称看起来像整数,按数字顺序,然后是所有其他属性按添加顺序”。这是Chrome和IE实现的行为。 Firefox的行为有点复杂,取决于你的对象是否是一个数组,以及它是否是一个使用了确切属性名称的数组,以及数组的长度和数量的长度以及其他一些东西。
在任何情况下,如果要按顺序枚举值,只需使用array.push()
将它们存储在数组中,然后枚举数组的索引。因此,将options[value] = ...
替换为options.push(...)
并将for (var index in options)
替换为for (var index = 0; index < options.length; ++index)
,并从options[index].value
获取值,就像您已经获得该文本一样。