程序员人生 网站导航

Jquery入门:$(this) 和 this 的区别

栏目:jquery时间:2014-05-09 02:32:14

  这是Jquery入门教程中的一个例子,自己在录入代码时错把 this 写成了 $(this) 。程序就出错了 经对比发现 this 是DOM元素,而$(this)是Jquery中的一个对象。

以下为引用的内容:
$(document).ready(function() {
  $("#reset").click(function(){
    $("form").each(function(){
      this.reset();
    })
  })
});

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐