后面这个$(this)中的this不是已经是jQuery对象了吗?为什么还要用$()呢
$('p').click(function(){
// 把 p 元素转化成 jQuery 的对象
var $this= $(this)
$this.css('color','red')
})
$('p').click(function(){
// 把 p 元素转化成 jQuery 的对象
var $this= $(this)
$this.css('color','red')
})
2018-05-03
举报