A. var $li = $("
A. $(" B. sel").val("选项四"); C. $(" D. sel").val("4"); E. $(" F. sel >option:eq(4)").checked; G. $(" H. sel option:eq(4)").attr("selected");
A. $("sex[0]").attr("checked",true); B. $(" C. sex[0]").attr("checked",true); D. $("[name=sex]:radio").attr("checked",true); E. $(":radio[name=sex]:eq(0)").attr("checked",true);
A. $("a").attr("title").val(); B. $(" C. a").attr("title"); D. $("a").attr("title"); E. $("a").attr("title").value;
元素最初代码如下:
你最喜欢的运动是什么?
元素的样式在myClass基础上再应用high样式,即变为如下代码:
A. $("p").attr("class").val("high"); B. $("p").attr("class","high"); C. $("p").addClass("high"); D. $("p").removeClass("high");