答案 0 :(得分:1)
您可能想要使用live()方法:
$(".up,.down").live('click',function(){
var row = $(this).parents("tr:first");
if ($(this).is(".up")) {
row.insertBefore(row.prev());
} else {
row.insertAfter(row.next());
}
});
根据定义,live()将“为现在和将来与当前选择器匹配的所有元素附加事件的处理程序。”