例如:“像这样,但这是使用鼠标单击。如果使用按键,那就太好了,谢谢。” 这是代码:演示
$(".ingredient").click(function(){
var element = $(this);
var added = false;
var targetList = $(this).parent().siblings(".ingredientList")[0];
$(this).fadeOut("fast", function(){
$(".ingredient", targetList).each(function(){
if ($(this).text() > $(element).text()){
$(element).insertBefore($(this)).fadeIn("fast");
added = true; return false;
}
});
if(!added) $(element).appendTo($(targetList)).fadeIn("fast");
});
});