//点击lable让他前边的checkbox选中
$("label").live("click",function(){
var li= $(this).parent().find("input");
if(li.attr("checked"))
{
$(this).parent().find("input").attr("checked",false);
return;
}
$(this).parent().find("input").attr("checked",true);
});
与下边的等效
<input id="Checkbox5" name="pwera" type="checkbox" /><label for="Checkbox5" >退回</label>