var $this= $(this) 前面那个$this 代表什么? 后面$(this)代表是$('p')的内容吗?
$('p').click(function(){
//把p元素转化成jQuery的对象
var $this= $(this)
$this.css('color','red')
})
$('p').click(function(){
//把p元素转化成jQuery的对象
var $this= $(this)
$this.css('color','red')
})
2016-11-09
举报