Prototype1.5.1源代码解读分析-1
分析人:自考中国网 911 链接地址
Prototype是为应用javascript编程开发的一个通用帮助库(general helper library)。其重点在于扩展javascript语言本身,以便支持更加面向对象的编程风格。什么?javascript语言支持面向对象编程?是的,我可以肯定的告诉你,javascript语言支持面向对象编程。很多人错误的认为javascript语言所能做的要么是一些简单的表单验证,要么是许多华而不实的网页特效。这是不是有点让你惊讶?prototype可以看作是库的开发人员使用的库,它可以在http://www.prototypejs.org下载到最新的版本。目前的最新版本是1.5.1.理解prototype的源代码有助于帮助我们编写构造良好的库。好了,闲话少说,让我们一起来解读prototype吧!
Prototype对象源代码下面是prototype框架第一段代码:
var Prototype = {
Version: '1.5.1',
Browser: {
IE: !!(window.attachEvent && !window.opera),
Opera: !!window.opera,
WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1,
Gecko: navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1
},
BrowserFeatures: {
XPath: !!document.evaluate,
ElementExtensions: !!window.HTMLElement,
SpecificElementExtensions:
(document.createElement('div').__proto__ !==
document.createElement('form').__proto__)
},
ScriptFragment: '<script[^>]*>([\u0001-\uFFFF]*?)</script>',
JSONFilter: /^\/\*-secure-\s*(.*)\s*\*\/\s*$/,
emptyFunction: function() { },
K: function(x) { return x }
}