让id名为demo的元素以淡出的方式实现隐藏效果的正确写法是()。
A、$("#demo").animate({opacity:0},200)
B、$("#demo").fadeOut("fast")
C、$("#demo").animate({height:0},300)
D、$("#demo").fadeTo("fast",0)
A、$("#demo").animate({opacity:0},200)
B、$("#demo").fadeOut("fast")
C、$("#demo").animate({height:0},300)
D、$("#demo").fadeTo("fast",0)
A、$("div").has("#demo") B、$("div").filter("#demo") C、$("div").eq("#demo") D、$("div").find("#demo")
A、$("#wrap").animate({height:"show"},300) B、$("#wrap").slideDown(300) C、$("#wrap").fadeOut() D、$("#wrap").animate({height:0},300)
A、$("div.demo").css("background","blue") B、$("div:not(.demo)").css({"background":"blue"}) C、$("div:not(.demo)").css({"background","blue"}) D、$("div:not(.demo)").css("background","blue")
A、request.getSession().setAttribute(“name”,"newer") B、request.getSession().getAttribute(“ID”,id); C、request.getSession().setParameter(“ID”,id); D、request.getSession().getParameter(“ID”,id)