页面中有一个select标签,代码如下:
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. $("p").attr("class").val("high");
B. $("p").attr("class","high");
C. $("p").addClass("high");
D. $("p").removeClass("high");
animate方法中必选参数为( )
A. styles
B. speed
C. easing
D. callback