Prototype
Prototype
Prototype is a JavaScript framework that aims to ease development of dynamic web applications. Featuring a unique, easy-to-use toolkit for class-driven development and the nicest Ajax library around, Prototype is quickly becoming the codebase of choice for web application developers everywhere.
Homepage: http://prototype.conio.net/
Prototype 1.6.0 新特性
Prototype 1.6.0 released This version of Prototype brings a number of major enhancements to the core APIs as well as the usual slew of bug fixes and performance optimizations. For the full story, see the CHANGELOG and the release notes for 1.6.0_rc0 and 1.6.0_rc1. API highlights include:
Prototype入门实例
上一篇写的是用Ajax实现的一个登录验证程序,可以看到代码有些复杂。但是Java世界里从来就不缺少框架,Ajax也有不少优秀的框架,其中Prototype就是其中之一。通过Prototype可以轻松实现很多功能,关于Prototype请参见:http://www.prototypejs.org/ 下面就用Prototype实现登录验证 1.页面 <form name="myform" action="login...
Prototype教程
一 Ajax-- 整合的力量 2005 年,伴随着 Web2.0 的东风, Ajax 逐渐进入国内开发人员的视线,并风靡全国。这个在 2005 年 2 月份由 Adaptive Path 公司的 Jesse James Garrett 命名的综合技术,综合利用 Javascript 、 XHTML 和 CSS 、 DOM 、 XMLHttpRequest (以下称之为 XHR )、 XML 和 XSTL 等技术,为 Web 应用程序提供异步的 http 请求处理方式,帮助 W...
Prototype.js 学习笔记(一)
1, Prototype.js是什么? prototype.js 是一个由 Sam Stephenson 大仙 编写的 JavaScript 程序包。这个程序包使程序员可以轻松的创建良好兼容性和交互性的web应用程序,并可以很容易的加入Web 2.0特性。 要学习他,首先要下载这个包 prototype.js 。(只有从官方网站上下载的程序包才能保证其纯洁,很多人修改了 prototype.js 的代...
prototype试用
一直没有没有时间看prototype,现在好了,已经更新到了1.5 pre1,呵呵,强大的功能不得不学习啊,这个是提升自己JS能力的又一个捷径. 1. Prototype是什么? 或许你还没有用过它, prototype.js 是一个由Sam Stephenson写的JavaScript包。这个构思奇妙编写良好的一段兼容标准的一段代码将承担创造胖客户端, 高交互性WEB应用程序的重担。轻松加入Web 2.0特...
Prototype : $() 的变化
从最新版本的Prototype里,我发现我用得最多的 $() 方法代码有了变化: function $() { var results = [], element; for (var i = 0; i < arguments.length; i++) { element = arguments; if (typeof element == ’string’) element = document.getElementById(element); results.pu...
prototype.js开发笔记
Chapter 1. Programming Guide 1.1. Prototype是什么? 或许你还没有用过它, prototype.js 是一个由Sam Stephenson写的JavaScript包。这个构思奇妙编写良好的一段兼容标准的一段代码将承担创造胖客户端, 高交互性WEB应用程序的重担。轻松加入Web 2.0特性。 如果你最近体验了这个程序包,你很可能会发现文档并不是它...
细说prototype.js的事件注册
一,关于prototype.js中发现的问题 在跟我再深入啃啃prototype.js 中我们讨论了prototype.js中得 bind/Event.observe. charon@xxx 提到了 Event.observe(myChk, 'click',showMessage.bind(this), false); 本来做drag的例子,发现prototype.js的个问题。见附件 test.htm 以下贴出了代码: 当注册 div的mousemove事件,并且div中包括个 img元...