我目前正在尝试创建一个按钮,该按钮可让我根据属性对选项进行分组。由于我不是jquery wiz,所以我使用了现有的工作按钮“全部添加”并开始对其进行修改,以便仅添加具有特定属性的选项。下面的代码就是这个意图……
this.container.find(".remove-all").click(function() {
that._populateLists(that.element.find('option').removeAttr('selected'));
return false;
});
this.container.find(".add-all").click(function() {
var options = that.element.find('option').not(":selected");
if (that.availableList.children('li:hidden').length > 1) {
that.availableList.children('li').each(function(i) {
if (jQuery(this).is(":visible")) jQuery(options[i - 1]).attr('selected', 'selected');
});
} else {
options.attr('selected', 'selected');
}
that._populateLists(that.element.find('option'));
return false;
});
this.container.find(".add-auto").click(function() {
var options = that.element.find('option').not(":selected");
if (that.availableList.children('li:hidden').length > 1) {
that.availableList.children('li').each(function(i) {
if (jQuery(this).is(":visible") && jQuery(this).has.class("auto")) jQuery(options[i - 1]).attr('selected', 'selected');
});
} else {
that.availableList.children('li').each(function(i) {
if (jQuery(this).has.class("auto")) jQuery(options[i - 1]).attr('selected', 'selected');
});
}
that._populateLists(that.element.find('option'));
return false;
});
},
我目前正在使用has.class来查找所需的属性。在这种情况下,自动。但这不起作用。我正在尝试修复顶部显示的代码,以便将属性称为“自动”。 label = "'+ option.attr('class')+'"
是在html中生成lable =“ auto”的代码。
_getOptionNode: function(option) {
option = jQuery(option);
var node = jQuery('<li class="ui-state-default ui-element " title="' + option.text() + '" data-selected-value="' + option.val() + '" label = "' + option.attr('class') + '" ><span class="ui-icon"/>' + option.text() + '<a href="#" class="action"><span class="ui-corner-all ui-icon"/></a></li>').hide();
node.data('optionLink', option);
return node;
},
下面是显示用户界面的图像。当我检查AUTO:选项时,我有以下代码...
<li class="ui-state-default ui-element ui-draggable ui-draggable-handle" title="AUTO: Car Dealers - New Cars (CARD_NEW)" data-selected-value="82" industry="auto'" style=""><span class="ui-helper-hidden"></span>AUTO: Car Dealers - New Cars (CARD_NEW)<a href="#" class="action"><span class="ui-corner-all ui-icon ui-icon-plus"></span></a></li>
我希望我的“添加自动”按钮能够将所有行业=“自动”选项向左移动。
答案 0 :(得分:0)
我将基于您的标题
var elements = $(document).find("[data-attribute]")
该代码将返回属性为"data-attribute"
的所有元素
如果要在document
内的特定位置上查找,只需更改div#Header
...还要将data-attribute
更改为想要的industry
或{{1 }}甚至title