$('p').click(function(){ //把p元素转化成jQuery的对象 var $this= $(this) $this.css('color','red')})
前面一个this是html dom对象, 后面的$this 是转化为了Jqurey 对象