一、同級元素app
$(":checkbox").click(function(){ $(this).attr("checked",true); $(this).siblings().attr("checked",false); });
獲取當前索引值:$(this).index();this
二、不一樣級spa
$(':checkbox').each(function(){ $(this).click(function(){ if($(this).is(':checked')){//或者$(this).attr(':checked') $(':checkbox').removeAttr('checked'); $(this).prop('checked',true); //$(this).attr('checked','checked'); } }); })
獲取當前索引值:$(this).index(':checkbox');code
PS:angularJs中使用jQueryblog
setTimeout(function () { $scope.$apply(function () { //所進行的修改值或樣式的代碼 }); }, 1000);