1.每4个ul 包裹DIV怎么写?
$("ul:nth-child(4n)").each(function(i){ $("ul").slice(i*4,i*4+4).wrapAll("<div></div>");});
2.$.proxy( foo, obj, 5, 10 );LINK