jQuery选择器

jQuery选择器

jQuery事件

jQuery添加元素

>第一个选项(通常radio使用):

$("input[name='optional_answer_"+index+"']:eq(0)").attr("checked",'checked'); // 单选按钮
>父元素parent:

$("input[name='"+i+"_可选答案_"+index+"']").parent('td').parent('tr').remove();  // 表格行移除(不能直接parent('tr'))
>第一个元素first:

$("#sheet_table input[type='radio'][checked='checked']").first().prop("checked","checked"); // 单选按钮设置选中

>最后一个元素last:

$("#sheet_table input[type='radio'][checked='checked']").last()

>checkbox是否选中:

$("input[name='_" + i + "_评定分_" + index + "']").prop("checked"); //是否选中
>单选按钮radio是否选中:

$("input[name='optional_answer_" + index + "']:checked").val() //选中项的值
>后一个元素next:

$(obj).parent('td').next().find("input").first().val();
>前一个元素prev:

$("input[name='projectId_"+pageProjectId+"']").first().prev().attr("disabled","disabled");








你可能感兴趣的:(jQuery选择器)