我的网站上有以下HTML代码:
<div class="groups">
<div class="group">
Group 1 priority:
<select>
<option value="1.0">1</option>
<option value="2.0" selected="selected">2</option>
<option value="3.0">3</option>
</select>
</div>
<div class="group">
Group 2 priority:
<select>
<option value="1.0">1</option>
<option value="2.0">2</option>
<option value="3.0" selected="selected">3</option>
</select>
</div>
<div class="group">
Group 3 priority:
<select>
<option value="1.0" selected="selected">1</option>
<option value="2.0">2</option>
<option value="3.0">3</option>
</select>
</div>
</div>
我正在寻找一种方法,根据下拉列表中选择的内容,使用jQuery对这些组在浏览器中显示的顺序进行排序。当用户在任何下拉列表或页面加载中选择新值时,它应该求助。
解决这个问题的最简单方法是什么?
如果可以以任何方式使用可排序的东西,我可以使用jQuery UI。我无法找到使用它的方法。
更新:&lt; div class =“group”&gt;中还有其他数据。无论他们搬到哪里都应该遵循下拉菜单。组的数量从0到20不等。
答案 0 :(得分:4)
编辑:以下是一些代码,您可以执行以下操作。此处select_1
,select_2
等应该是下拉列表的ID。 getDropdown()
应该是一个函数,它使用您选择的方法(document.getElementById().options.selectedIndex,
,jquery等)返回给定下拉ID的选定值
<div id="parent">
<div id="child1">
..content
<select id="select_1">...content</select>
</div>
<div id="child2">
..content
<select id="select_2">...content</select>
</div>
<div id="child3">
..content
<select id="select_3">...content</select>
</div>
</div>
function sortValues()
{
/*Save the contents of each div in an array
so they can be looped through and
re inserted later*/
var content=[$("#child1").html(),$("#child2").html,$("#child3").html()];
//Get the value of all dropdowns and sort them
var sortedArray=[getDropdown("select_3"),getDropdown("select_2"),getDropdown("select_3")];
var sortedContent=new Array();
sortedArray.sort();
/*Loop through all the sorted values,
compare the value of each dropdown
against the sorted value and use that
to determine the new arrangement of the divs
*/
for (x=0; x< sortedArray.length; x++)
{
for (y=0; y<=content.length; y++)
{
if (getDropdown("dropdown_" + (y+1))==sortedArray[x])
{
sortedContent[x]=content[x];
//This will prevent the same div from being assigned again:
$("#select_" + (y+1)).remove();
break;
}
}
}
/* Empty the parent div so new divs can be inserted.
You can also do a fadeout/fadeIn of the div here
*/
$("#parent").empty();
for (x=0; x< sortedContent.length; x++)
{
$("#parent").append(sortedContent[x]);
}
}