$('a').click(function(){ $('ul li input').each(function(){ var val=$(this).val(); if(val != '') { $(this).css('border-color', '#ccc'); alert(1) } else { $(this).css('border-color', 'red'); alert(222); } }) })