| 今天,jQuery 1.4.2发布了。速度比1.4.1版本又提升了一倍。 下载: 在对性能做了一些改进的同时,还添加了一些新的API,增加了一些.delegate() 和 .undelegate()方法。

示例: $("table").delegate("td", "hover", function(){ $(this).toggleClass("hover");}); 使用 .live()方法如下: $("table").each(function(){ $("td", this).live("hover", function(){ $(this).toggleClass("hover"); });}); $(document).delegate("td", "hover", function(){ $(this).toggleClass("hover");}); 点击查看详情:http://blog.jquery.com/2010/02/19/jquery-142-released/
|