【简答题】下面哪些语句写法是正确的?A. $("select#sel1>option:selected").appendTo($("select#sel2")); B. $("select#sel1>option:selected").appendTo("select#sel2"); C. $("select#sel2").append("select#sel1>option:selected"); D. ...
【简答题】下面哪些语句写法是正确的?A. $("ul").prepend(" 菠萝 "); B. $("ul").prepend($(" 菠萝 ")); C. $(" 菠萝 ").prependTo("ul"); D. $(" 菠萝 ").prependTo($("ul")); E. $(" 菠萝 ").prepend("ul");
【简答题】下面哪些语句是创建数组的正确语句 ( )A. float f[][] = new float[5][5]; B. float []f[] = new float[5][5]; C. float f[][] = new float[5][]; D. float [][]f = new float[5][5]; E. float [][]f = new float[][5];