【JQuery】有点小提示

$("button").prop("disabled", true)—— prop操作属性

$("#target2").appendTo("#right-well")——转移元素到目标名下

$("#target2").clone().appendTo("#right-well")——先复制再转移元素到目标名下

$(".target:nth-child(3)").addClass("animated bounce");——选择第几个子元素【:nth-child(3)】