search
HomeWeb Front-endJS TutorialSummary of knowledge points in the JavaScript introductory series_javascript skills

JavaScript is a literal scripting language. It is a dynamically typed, weakly typed, prototype-based language with built-in support for types. Its interpreter is called the JavaScript engine, which is part of the browser and is widely used in client-side scripting languages. It was first used on HTML (an application under Standard Universal Markup Language) web pages to add dynamic functions to HTML web pages. .

1. Preparation:

1. Why learn JavaScript

All major browsers are Javascript only

Most web pages use Javascript

It can make web pages present various dynamic effects

Easy to learn

2. How to insert JS

<script> tags should appear in pairs, and write JavaScript code between <script></script>.


4. The position of JS in the page

As a scripting language, JavaScript can be placed anywhere in the HTML page. We usually place it in the head or body part of the web page. But the browser interprets HTML in order, so the previous script is executed first. For example, the js for page display initialization must be placed in the head, because the initialization must be done in advance (such as setting css for the page body, etc.); and if the function is executed through an event call, there is no requirement for the location.

5. Statements and symbols

The format of each JavaScript code: statement;

6. Annotation method

For single-line comments, add the symbol "//" before the comment content.

Multi-line comments start with "/*" and end with "*/".

7. Variables

Define variables using the keyword var, the syntax is as follows:

var variable name

The variable name can be named arbitrarily, but the naming rules must be followed:

1. Variable names must start with letters or underscores (_).

2. Variable names must use English letters, numbers, and underscores (_).

3. JavaScript keywords and JavaScript reserved words cannot be used in variable names.

8. Judgment statement (if...else)

Syntax:

if(条件)
{ 条件成立时执行的代码 }
else
{ 条件不成立时执行的代码 }

9. Function

function 函数名()
{
函数代码;
}

Description:

1. function keyword defines a function.

2. "Function name" is the name you give the function.

3. Replace "function code" with code that completes a specific function.

Function call:

After a function is defined, it cannot be executed automatically, so if you need to call it, just write the function directly at the required location

2. Commonly used interaction methods

1. Output content (document.write)

document.write() can be used to write content directly to the HTML output stream. To put it simply, it is to output the content directly on the web page.

The first type: the output content is enclosed in "", and the content within the "" is directly output.

The second type: output content through variables

The third type: output multiple contents, and connect the contents with a + sign.

The fourth method: output HTML tags and work. The tags are enclosed in "".

2. Warning (alert message dialog box)

A small window pops up with a message text (alert pops up a message dialog box (including an OK button)): alert (string or variable);

Note:

1. No other operations can be performed before clicking the "OK" button in the dialog box.

2. Message dialog boxes can usually be used to debug programs.

3. alert output content, which can be a string or variable, similar to document.write.

3. Confirm (confirm message dialog box)

Pop up a dialog box (including an OK button and a Cancel button). confirm(str);

Parameter description:

str: Text to be displayed in the message dialog box

Return value: Boolean value

Return value:

When the user clicks the "OK" button, return true

When the user clicks the "Cancel" button, return false

Note: The return value can be used to determine which button the user clicked

Note: The message dialog box is exclusive, that is, the user cannot perform any other operations before clicking the button in the dialog box.

4. Question (prompt message dialog box)

Pop up a message dialog box (including an OK button, a cancel button and a text input box) prompt(str1, str2);

Parameter description:

str1: The text to be displayed in the message dialog box, cannot be modified

str2: The content in the text box can be modified

Return value:

1. Click the OK button, and the content in the text box will be used as the function return value

2. Clicking the cancel button will return null

Note: No other operations can be performed before the user clicks the button in the dialog box.

5. Open a new window (window.open)

The open() method is used to open a new window: window.open(, , )

Parameter description:

URL: URL or path to open the window.

Window name: The name of the opened window.

Can be "_top", "_blank", "_selft", etc.

Parameter string: Set window parameters, each parameter is separated by commas. (top,left,width,height,menubar,toolbar,scrollbars,status)

Note:

1. There are spaces before and after commas and equal signs between parameters. The string is invalid. Only by removing the spaces can it run normally.

2. The running results consider browser compatibility issues.

6. Close the window (window.close)

window.close(); //Close the specified window

.close();

3. DOM operation

1. Get to know DOM

Document Object Model DOM (Document Object Model) defines standard methods for accessing and processing HTML documents. DOM renders HTML documents as elements,

Tree structure (node ​​tree) of attributes and text.

1. Element nodes: In the above picture, ,

,

, etc. are all element nodes, that is, labels.

2. Text node: content displayed to the user, such as JavaScript, DOM, CSS and other texts in

  • ...
  • .

    3. Attribute node: element attribute, such as the link attribute href="http://www.imooc.com" of the tag.

    2. Get elements by ID

    document.getElementById(“id”)

    Note: The element obtained is an object. If we want to operate on the element, we have to use its properties or methods.

    3. innerHTML attribute

    The

    .innerHTML property is used to get or replace the content of an HTML element.

    Object.innerHTML

    1.Object is the element object obtained, such as the element obtained through document.getElementById("ID").

    2. Pay attention to writing, innerHTML is case sensitive

    4. Change HTML style

    Object.style.property=new style;

    Note: Object is the element object obtained, such as the element obtained through document.getElementById("id").
    Basic property table (property);

    backgroundColor/height/width/color/font/fontFamily/fontSize

    5. Show and hide (Display attribute)

    Object.style.display = value

    Note: Object is the element object obtained, such as the element obtained through document.getElementById("id").

    value:

    none: This element will not be displayed (hidden)

    block: This element will be displayed as a block-level element (display)

    6. Control class name (className attribute)

    Set or return the class attribute of the element

    object.className = classname

    1. Get the class attribute of the element

    2. Specify a css style for an element in the web page to change the appearance of the element

    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
    Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 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

    Custom Google Search API Setup TutorialCustom Google Search API Setup TutorialMar 04, 2025 am 01:06 AM

    This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

    Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 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

    Example Colors JSON FileExample Colors JSON FileMar 03, 2025 am 12:35 AM

    This article series was rewritten in mid 2017 with up-to-date information and fresh examples. In this JSON example, we will look at how we can store simple values in a file using JSON format. Using the key-value pair notation, we can store any kind

    8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 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

    What is 'this' in JavaScript?What is 'this' in JavaScript?Mar 04, 2025 am 01:15 AM

    Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

    Improve Your jQuery Knowledge with the Source ViewerImprove Your jQuery Knowledge with the Source ViewerMar 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 Mobile Cheat Sheets for Mobile Development10 Mobile Cheat Sheets for Mobile DevelopmentMar 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

    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

    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 agoBy尊渡假赌尊渡假赌尊渡假赌
    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    mPDF

    mPDF

    mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version

    MantisBT

    MantisBT

    Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

    SAP NetWeaver Server Adapter for Eclipse

    SAP NetWeaver Server Adapter for Eclipse

    Integrate Eclipse with SAP NetWeaver application server.