//延迟实例 $("#ul").on('bind',function(e){ $('li').each(function(index){ $(this).css('background-c
//延迟实例
$("#ul").on('bind',function(e){
$('li').each(function(index){
$(this).css('background-color','orange')
.dalay(index*200)
.fadeOut(1500);
});
e.preventDefault();
})
//json实例
var json = [
{'re':'#f00'},
{'green':'#0f0'}
];
$.each(json,function(){
$.each(this,function(name,value){
console.log(name + '=' + value)
})
})