search
HomeWeb Front-endJS TutorialJavaScript object-oriented static and non-static classes_js object-oriented

Until one day, I started to piece together DOM tags in js, and I needed to keep piecing them together. I found that my code became increasingly ugly, which was not only a problem of code simplicity, but also sometimes caused performance problems. If things continue like this, within three months, God will not know what I have written. The purpose of this article is entirely to record my experience.
First of all, let’s take a look at the garbage code that prompted me to change my habit of writing JavaScript. In exercises, tests, debugging, and even formal projects, a large amount of the following code is filled with it.

Copy code The code is as follows:

Function finduser(userId)
{
}
Function showmessage(msg)
{
Var message="Prompt, something went wrong, error reason" msg;
Alert(message);
}
Function append(obj)
{
Var onclick="createdom()";
Var title="Hello";
$(obj).append("” title ””);
}

Don’t tell me you haven’t seen the above Code, to be honest, the above code is really fast to write and easy to call. If the first two functions are not enough to arouse your indignation, then the third function should make you want to greet the creator of this code. Yes, the third function directly triggered my decision to use object orientation.
Actually, I can completely transform the third function into the following.
Copy code The code is as follows:

function append(obj)
{
var a=document.craeteElement(“a”);
a.title=”Hello”;
a.href=”javascript:void(0);”;
a.innerHTML=a. title;
a.click=function(){createdom();};
$(obj).append(a);
}

How about this? Is there any progress? OK, this is the code I want, but it's not concise enough. I hope that I can encapsulate the creation of DOM objects into a class, and install the above three methods into one object. Well, it is very simple to do it. This kind of work does not require searching for codes and examples on the Internet. , it can be completed by directly applying the object-oriented thinking of C#.
The first is to encapsulate the above three methods into an object. The encapsulation is very simple. I shouldn’t need to talk nonsense, just write the code directly.

Three encapsulated functions
Copy code The code is as follows:

User={
Function finduser(userId)
{
},
Function showmessage(msg)
{
Var message="Prompt, something went wrong, reason for the error" msg;
Alert(message);
},
Function append(obj)
{
Var a=document.craeteElement(“a”);
a.title=”Hello” ;
a.href=”javascript:void(0);”;
a.innerHTML=a.title;
a.click=function(){createdom();};
$ (obj).append(a);
}
}


You only need to declare a User variable to store the above three methods, and use it between different methods Separated by commas, it should be noted that User at this time is a static class with no constructor or private constructor (I guess), and it cannot be new anyway.
Secondly, I create a static class that encapsulates the creation of DOM objects. The code is as follows:

Copy code Code As follows:

createElement={
element=function(targetName){return document.createElement(targetName);},
a=document.createElement("a")
}

Quite simple, so that I can test whether the CreateElement object above works properly. This time the test is done in the append method. The append method is again transformed into the following code.

Copy code The code is as follows:

function append(obj)
{
Var a= createElement .a;
a.title=”Hello”;
a.href=”javascript:void(0);”;
a.innerHTML=a.title;
a.click=function(){createdom();};
$(obj).append(a);
}

So far, append is working Pretty good, okay, I need to make a small change. I need to create three a's in the append function and add them to the obj object in turn. The code is as follows:

Code
Copy code The code is as follows:

function append(obj)
{
For(i=0;i{
Var a= createElement .a;
a.title =”Hello”;
a.href=”javascript:void(0);”;
a.innerHTML=a.title;
a.click=function(){createdom();} ;
$(obj).append(a);
}
}

The final result displayed is that only one a is obtained in the obj object. I don’t understand it very much. An a makes me feel like I am back in the embrace of C#. How wonderful it is. After analysis, when I call CreateElement.a for the first time to get the a object through Var a= CreateElement.a;
, in the a attribute document.createElement("a") has already resident the a object in the memory. After that, no matter how I call CreateElement.a, I actually just get a reference to a in the memory, and the changes are the same. An object, that's what's special about static classes, however, when I get the object by calling the CreateElement.element function, all I get is a new object every time, the method doesn't save a reference to the object, that's for sure Yes, the solution is to create a new object by calling the CreateElement.element function, but this method is not object-oriented and recommended.
Another better solution is to use non-static classes, that is, entity classes. The way to create non-static classes is also quite simple. The code is as follows:

Copy code The code is as follows:

createElement=function(){
element=function(targetName){return document.createElement(targetName );};
a=document. createElement(“a”);
}

Declare the createElement object directly and make it have a constructor, and the members are separated by semicolons , of course, if you like, you can write it directly like this, but it will not have the same effect.

Copy code The code is as follows:

function createElement (){
element =function(targetName){return document.createElement(targetName);};
a=document.createElement(“a”);
}

After the above statement, we You can use the createElement class in the append function like C# to create DOM objects.

Function
Copy code The code is as follows:

function append(obj)
{
for(i=0;i{
var ele=new createElement();
var a=ele.a;
a.title =”Hello”;
a.href=”javascript:void(0);”;
a.innerHTML=a.title;
a.click=function(){createdom();} ;
$(obj).append(a);
}
}

In this way, every time new createElement() is a new object, there is no reference problem .
Actually, what is mentioned above is the difference between static classes and non-static classes in Javascript; of course, we also know from it that there are still some differences in the efficiency of using static classes and non-static classes, and they must be static classes when they are called. It's more convenient. If you don't care about reference conflicts, I think static classes should be the first choice.
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
JavaScript Comments: A Guide to Using // and /* */JavaScript Comments: A Guide to Using // and /* */May 13, 2025 pm 03:49 PM

JavaScriptusestwotypesofcomments:single-line(//)andmulti-line(//).1)Use//forquicknotesorsingle-lineexplanations.2)Use//forlongerexplanationsorcommentingoutblocksofcode.Commentsshouldexplainthe'why',notthe'what',andbeplacedabovetherelevantcodeforclari

Python vs. JavaScript: A Comparative Analysis for DevelopersPython vs. JavaScript: A Comparative Analysis for DevelopersMay 09, 2025 am 12:22 AM

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools