$(document).ready(function(){ this.click(function(){ $(".car").animate({ top:500 },{ duration:600 }) }) });
为什么不能用this而非得用$(".car")进行操作呢?
你这里的this指的是document根节点。
如果你想要的效果是点击该文档页面中任意位置都能触发该动画事件的话,
应该是用 this.onclick=function(){ //事件 } - this JS对象
或者 this.click(function ... 改成 $(this).click(function ... - $(this) JQ对象
知道啦