• 2022-05-31
    对于<;div style="width:100px,height:100px;background:red">;<;/div>;,可实现与代码$("div").slideUp(400)同样效果的是( )
    A: $("div").animate({"width":"0px","height":"0px"})
    B: $("div").animate({"width":"0px","height":"100px"})
    C: $("div").animate({"height":"0px"})
    D: $("div").animate("height","0px")