例: 「このように、これはマウス クリックを使用しています。キー プレスを使用している場合は、ありがとうございます。」ここにコードがあります:デモ
$(".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");
});
});