Home Web Front-end JS Tutorial JavaScript Advanced Tutorial (Lesson 2) Page 1/3_Basic Knowledge

JavaScript Advanced Tutorial (Lesson 2) Page 1/3_Basic Knowledge

May 16, 2016 pm 07:15 PM

Today we will learn something very useful and interesting: cookies - these are used to record information about people who have visited your web page. Using cookies, you can record the visitor's name and send him a warm welcome message when he visits your site again. You can also use cookies to remember the characteristics of the client - if the visitor is connected to a slow network cable, the cookie can automatically tell you to send only as little image content as possible when sending the web page to them.

As long as you use cookies within a reasonable scope (do not use them to inquire about users’ personal privacy), cookies are still quite useful. So I'm going to introduce you to how cookies work, but before I get started, let's talk about two JavaScript things: interesting string manipulation and related arrays.

Why do you have to learn magical string processing before starting to roam the world of cookies? Because cookies are also strings. To save visitor information, you must first create a special cookie string. This information is then read when the visitor returns to your site, at which point you must decode the cookie string. To generate and interpret these strings you must understand how JavaScript strings work. So we must first understand strings. If you are a newbie, you should first read the content of the second lesson of the JavaScript Basic Tutorial. Here is an example:

var normal_monkey = "I am a monkey!
";
document. writeln("Normal monkey " normal_monkey);
var bold_monkey = normal_monkey.bold();
document.writeln("Bold monkey " bold_monkey);

Statement here:

var bold_monkey = normal_monkey.bold();

is equivalent to the following pair of declarations:

var bold_monkey = "" normal_monkey "";

The first version of the statement looks much more concise. The bold object in the string object is used here. Other string objects include indexOf, charAt, substring, and split. These methods can go deep into the structure of the string. First let's study indexOf.

indexOf
indexOf is used to find the position of a series of characters in a string and tell you the starting position of the substring. If a string does not contain the substring, indexOf returns "-1." Here is an example:

var the_word = "monkey";
Let's start with the word "monkey".

var location_of_m = the_word.indexOf("m");
location_of_m (the position of the letter m) will be 0 because the letter m is at the beginning of the string. var location_of_o = the_word.indexOf("o"); location_of_o (the position of the letter o) will be 1.

var location_of_key = the_word.indexOf("key");
location_of_key (key's position) will be 3 because the substring "key" starts with the letter k, and k is the position of the word monkey It's 3.

var location_of_y = the_word.indexOf("y");
location_of_y) The position of the letter y) is 5.

var cheeky = the_word.indexOf("q");
The cheeky value is -1 because there is no letter q in the word "monkey".

IndexOf is more practical:

var the_email = prompt("What's your email address?", "");
var the_at_is_at = the_email.indexOf("@");

if (the_at_is_at == -1)
{
alert("You loser, email addresses must have @ signs in them.");
}

This The code snippet asks the user for their email address. If the email address entered by the user does not contain characters, the user is prompted "@The email address you entered is invalid. The email address must contain the character @."

charAt
The chatAt method is used to find characters at a specific position in a string. Here is an example:


var the_word = "monkey";

var the_first_letter = the_word.charAt(0);
var the_second_letter = the_word.charAt(1);
var the_last_letter = the_word.charAt(the_word .length-1);

the_first_letter (the first character) is "m"
the_second_letter (the second character) is "o"
the_last_letter (the last character) is "y"

Note that you can find out how many characters it contains by using the length attribute of the string. In this example, the_word is "monkey", so the_word.length is 6. Don't forget that the first character in a string is at position 0, so the last character is at length-1. So the_word.length-1 is used in the last line.


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)

Replace String Characters in JavaScript Replace String Characters in JavaScript Mar 11, 2025 am 12:07 AM

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

8 Stunning jQuery Page Layout Plugins 8 Stunning jQuery Page Layout Plugins Mar 06, 2025 am 12:48 AM

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

Build Your Own AJAX Web Applications Build Your Own AJAX Web Applications Mar 09, 2025 am 12:11 AM

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 Mobile Cheat Sheets for Mobile Development 10 Mobile Cheat Sheets for Mobile Development Mar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

Improve Your jQuery Knowledge with the Source Viewer Improve Your jQuery Knowledge with the Source Viewer Mar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 jQuery Fun and Games Plugins 10 jQuery Fun and Games Plugins Mar 08, 2025 am 12:42 AM

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

How do I create and publish my own JavaScript libraries? How do I create and publish my own JavaScript libraries? Mar 18, 2025 pm 03:12 PM

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

jQuery Parallax Tutorial - Animated Header Background jQuery Parallax Tutorial - Animated Header Background Mar 08, 2025 am 12:39 AM

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

See all articles