Home Web Front-end JS Tutorial JavaScript explained in detail

JavaScript explained in detail

Nov 26, 2016 am 09:05 AM
javascript

JavaScript can be said to be an essential technology in web development. It is flexible, simple and efficient. This time DRP used a lot of js, which gave me a deeper understanding of js. After watching this, I went back and watched the JS video of beef brisket. I looked at things I hadn’t seen before. Here is a summary of js. S What is JavaScript? What are the characteristics of JS? JS is an interpreted web script language. Its role is to control the behavior and content of the browser.
js code is embedded in Html.
It has several major features
It runs on the client, which means it can reduce the pressure on the server. Improve code execution efficiency.
JavaScript is an interpreted language (that is, code execution is not pre-compiled)
The corresponding compiled language needs to be compiled into intermediate code or machine language in advance during execution, such as java compiled into a .class file.
javaScript has nothing to do with java. Javascript is not a stripped-down version of other languages ​​(it is only vaguely and indirectly related to Java, for example), nor is it a simplification of anything. However, it has its limitations. For example, you cannot use the language to write standalone applications, and there is no built-in support for reading and writing files. In addition, Javascript scripts can only run on a certain interpreter or "host", such as Active Server Pages (ASP), Internet Browser, or Windows Script Host.
What functions can JavaScript achieve?
JavaScript can implement browser script development. It has many classic features. We need to master.
JavaSript implements web page special effects
Js can implement many web page special effects, such as scrolling of picture text, dynamic transformation of pictures, etc. Searching the Internet, you can find a lot of ready-made code. In short, there are many things that you don’t need to do yourself. You need to stand on the shoulders of giants.

JavaScript operates Html elements
Js can operate web page elements, such as input boxes, drop-down boxes, tables and other elements. The basis for operating html elements is the operation of DOM objects. Any html element is a dom object. We can use js to operate it. For example, change its attributes and dynamically add elements. Get its value etc.
Each element in Html corresponds to a node in dom. The html form corresponds to a dom tree, and each node has nodeName nodeValue nodeType attributes. js operates html by operating these attributes.
Here are some operation methods.
createElement(element): Create a new element node with the specified tag name, and the return value is a reference pointer to the new element node.
createTextNode(string): Create a new text node containing the given text, and return a pointer to the new element node. Reference pointer of text node:
appendChild(node): insert node
removeChild(node): will remove a child node from a given element and return a reference pointer to the deleted child node.
hasChildNodes: used to check whether a given element has child nodes and returns a boolean value
replaceChild(newnode,oldnode): node replacement
setAttribute(key, value): add a new attribute value or change the given element node Its existing attributes
getAttribute(key): Returns the value of a given attribute node of a given element
getElementById(): Finds an element with a given id attribute value and returns an element node
getElementsByTagName(): Use To find all elements with a given tag name
As can be seen from these methods, js can flexibly add, delete, and obtain a node (html element). In this way, the operation of the form will be much more flexible.
In this drp, the main method used is getElementById().
For example:
with(document.getElementById("userform")){
action="user_maint.jsp";
method="post";
submit();
}

JavaScript implements form validation

by JavaScript Typical form data for verification include:

Has the user filled in the required fields in the form?
Is the email address entered by the user legal?
Has the user entered a valid date?
Did the user enter text in the numeric field?
There are usually two ways to validate a JS form. One is to write a manual method. When the form is submitted or an event is triggered, the js method is called, and then the properties of the control are extracted through the js code to determine whether it meets the conditions. Another method is to use regular expressions to verify whether the input data conforms to a certain format. For example, the following js code for verification email

www.2cto.com

function test() 
                                                                                                                                                                                                    
var myreg =/^([a-zA-Z0-9]+[_|_|.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[ _|_|.]?)*[a-zA-Z0-9]+.[a-zA-Z]{2,3}$/;
                                                                                      
                   alert('Please enter a valid E_mail!');


The key to the code is to find the regular expression, and the second is to use this regular expression The test method is used to verify a certain string. Note that the test method comes with this regular expression.
JavaScript checks the customer's browser and creates cookies
Use javaScript to verify the user's browser version, information, etc.
The Navigator object below contains information about the visitor's browser, including browser type, version, etc.
"+ browser)

document.write("
")

document.write("Browserversion: "+ version)






A cookie is a variable stored on the visitor's computer. This cookie is sent each time the same computer requests a page through a browser. You can use JavaScript to create and retrieve cookie values.
First: Create a function that stores the visitor's name in a cookie variable
functionsetCookie(c_name,value,expiredays)
{
varexdate=new Date()
exdate.setDate(exdate.getDate()+expiredays)
document. cookie=c_name+"=" +escape(value)+
((expiredays==null)? "" : ";expires="+exdate.toGMTString())
}
Secondly: Create another function to check if it has been set cookie:
functiongetCookie(c_name)
{
if(document.cookie.length>0)

{

c_start=document.cookie.indexOf(c_name +"=")
if (c_start!=-1)
{
c_start =c_start + c_name.length+1
c_end=document.cookie.indexOf(";",c_start)
if (c_end==-1) c_end=document.cookie.length
returnunescape(document.cookie.substring(c_start, c_end))
}
}
return""
}


The above function will first check whether there is a cookie in the document.cookie object. If the document.cookie object stores certain cookies, it will continue to check whether the cookies we specify have been stored. If the cookie we want is found, a value is returned, otherwise an empty string is returned.

In short, js is an essential technology in web development. As a web developer, you must be familiar with it.



Statement of this Website
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

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

How to get HTTP status code in JavaScript the easy way How to get HTTP status code in JavaScript the easy way Jan 05, 2024 pm 01:37 PM

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service

See all articles