Similar to Prototype.js learning_prototype
As a successful open source framework for JavaScript, Prototype.js encapsulates many useful functions. Although the official document does not provide any, a search on Google revealed a lot of related documents. However, I still encountered it in the process of learning to use it. I have come up with some questions. I hope familiar friends can give me more advice. I pay attention to these points when learning prototype.js. At the same time, I also talk about the learning results and problems encountered for each point. ^_^
1. Creation of classes
prototype.js has been encapsulated, this is very simple.
var Person=Class.create();
This creates a Person class, which must provide the implementation of the initialize method:
Person.prototype={
initialize:function(){
, can be customized as parameterized.
You can see that after defining a class in this way, it is clearly different from JavaScript's original method of defining a class through function. In this case, we can use Class.create to define the class. Use function to define functions directly.
Classes usually also involve the definition of static members (static in nature) and instance members (which need to be instantiated before they can be called).
This is also very easy in JavaScript:
Static members:
var Person={
name:'person',
getName:function(){return 'person' }
};
The Person.getName above can be called directly, but the eat method needs to be called through var person=new Person();person.eat();.
2. Class inheritance
Class inheritance is actually supported by JavaScript itself, but prototype provides another method.
According to the implementation supported by javascript:
var Student=Class.create();
Student.prototype=new Person();
In this way, Student inheritance to Person.
This can be achieved when using prototype:
var Student=Class.create();
Object.extend(Student.prototype,Person.prototype);
Subclasses need to When adding methods, you can use
Student.prototype.study=function(){};
or
Object.extend(Student.prototype,{
study:function(){}
} );
3. Event mechanism (monitoring and observation of class method execution)
I have encountered some doubts about the event mechanism. As an event mechanism, it mainly needs to provide the definition of events, the monitoring of events and Observation of events.
In JavaScript, events need to start with on, that is, as events, they need to be named like onclick:
Add an external event to the above Student, such as:
Student.prototype. study=function(){
This.onstudy();
}
Student.prototype.onstudy=function(){};
This onstudy is implemented by the corresponding instance, for example The example uses this method:
function studyThis(){
alert("study this");
}
var student=new Student();
student.onstudy=studyThis() ;
We usually want to monitor and observe events. Based on the bindAsEventListener and Observe provided by prototype, we tried this:
study.onstudy=watchStudy.bindAsEventListener(this);
function watchStudy(event){
alert("watch study");
}
According to the event mechanism, when executing study, you should be able to see two prompts: study this and watch study, but after the final execution, only I can see watch study prompts, why is this? According to the concept of listener, the original method should not be overwritten. However, I looked at the source code of prototype.js and found that the original method will indeed be overwritten according to the above writing method.
Observe tried this:
Event.observe(study,'study',watchStudy,false);
According to the observation mechanism, you should see two prompts when executing study, but After the final execution, this line had no effect at all.
Why is this?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

This tutorial demonstrates creating dynamic page boxes loaded via AJAX, enabling instant refresh without full page reloads. It leverages jQuery and JavaScript. Think of it as a custom Facebook-style content box loader. Key Concepts: AJAX and jQuery

This JavaScript library leverages the window.name property to manage session data without relying on cookies. It offers a robust solution for storing and retrieving session variables across browsers. The library provides three core methods: Session
