$('.box').click(function () { // this指向了所绑定的元素, 它是元素dom节点, 不是jquery对象 console.log(this); // 把元素dom节点转变成jq对象 $(this).html(22222); })