我正在开发一个jquery下拉列表。通常我的下拉列表中有多个选项可供选择,但对于某些产品,只有一个选项我希望脚本能够选择该值,如果只有一个选项并禁用下拉列表。现有代码是:
RonisCatalog.selectSwatches = function(element, options){
if (jQuery('body .swatches-container').size()==0)
return ;
else
var selectOptions = jQuery(element).find('option'),
selectOptionsValues = {};
var selectLabel = '';
jQuery.each(selectOptions,function(idx,selectOption){
if (jQuery(selectOption).val()=='')
selectLabel = jQuery(selectOption).html();
selectOptionsValues[jQuery(selectOption).val()] = jQuery(selectOption).val();
});
jQuery('body .swatches-container .swatch-type-id-'+element.attributeId).parents('.swatch-list-continer').children('.swatch-list-label').html('<label id="attribute'+element.attributeId+'_label" >Select '+selectLabel+'</label>');
jQuery('body .swatches-container .swatch-type-id-'+element.attributeId+' .swatch-option').addClass('swatch-disabled').removeClass('swatch-active');
jQuery.each(options,function(idx,option){
if (typeof selectOptionsValues[option.id] != 'undefined')
jQuery('body .swatches-container .swatch-type-id-'+element.attributeId+' .swatch-option-id-'+option.id).removeClass('swatch-disabled');
});
};
我想在两者之间使用此选项:
else if (jQuery('body .swatches-container').size()==1) {
}
和上述功能。
任何帮助都将不胜感激。
由于
答案 0 :(得分:0)
你可以试试这个:
else if ($jQuery('body .swatches-container').size() == 1) {
$jQuery('body .swatches-container').val('0').attr("disabled", "disabled");
}