【简答题】使用jQuery设置元素elem的高度增加20px,以下哪些是正确的?(elem已经是jQuery对象) (2.0分)A. let h=parseInt(elem.css("height")); elem.css("height", (h+20)+"px"); B. let h=parseInt(elem.height()); elem.css("height", (h+20)+"px"); C....
【简答题】使用jQuey对元素elem添加class选择器high的CSS样式,以下语句哪些是正确的?(elem是jQuery对象) (2.0分)A. elem.attr("class", "high"); B. elem.addClass("high"); C. let old=elem.attr("class"); elem.attr("class", old+" high"); D. elem.add...