$(function(){
$("#myMessage li").each(function(){ $(this).click(function(){ //这个this是一个数组 alert($(this).html()); //这个this是当前对象 })
})