Prototype 刚刚发布了 1.7 RC1 版本,这是 Prototype 的一个新的主要发布版本,提供很多新的特性。
包括:
1. 使用 Sizzle 作为 CSS 选择器引擎;
2. 元素增加了on的方法,如:
$("messages").on("click", function(event) {
// ...
});
3. 新增 Element.Layout ,使用示例:
$('troz').measure('width'); //-> 150
$('troz').measure('border-top'); //-> 5
// Offsets, too:
$('troz').measure('top'); //-> 226
4. 修复了兼容 ECMAScript 5 的 JSON 问题
5. 修复了其他的一些bug
详细内容请看 CHANGES。