A. $(‘div,span,p’).click(function(){…}); B. $(‘div||span||p’).click(function(){…}); C. $(‘div+span+p’).click(function(){…} D. $(‘div~span~p’).click(function(){…})
A. $(“sex[0]”).prop(“checked”,true); B. $(“ C. sex[0]”).attr(“checked”,true); D. $(“[name=sex]:radio”).attr(“checked”,true); E. $(“:radio[name=sex]:eq(0)”).prop(“checked”,true);