


Getting Started with JavaScript Programming (Lesson 1)_Basic Knowledge
Regardless of whether you have learned javascript before, this tutorial can take you into the palace of javascript and appreciate the charm of javascript.
Everyone here is a lover of javascript, and they all have a certain understanding of javascript. I won’t introduce the history of javascript. Let’s just learn it and use it.
Perhaps most people think that javascript runs on the client, but this is not the case. There are two different running environments for javascript, one is javascript on the server side, and the other is javascript on the client side. Also, JavaScript is also an object-based language.
As the first lesson, I just give you a simple understanding, there is not too much. There are mainly three aspects:
1. Add java script to the page
2. Data types of java script
3. The three most basic dialog boxes of java script
About how to add Java script, I think everyone knows, is
/*This is also a comment,
is just multi-line.
*/
I don’t think I will go into detail about this today. I will leave it to the next lesson. Let’s consider it as the homework for this lesson, which is about adding javascript
to adapt to various environments. If the browser does not support javascript, what should we add to prevent the browser from displaying the source code of javascript, etc.
The second one, which is the most important one to talk about today, is the data type of javascript, which mainly includes the following basic types.
String
Number
Boolean
A string is a sequence composed of a series of characters. Includes letters, numbers, and punctuation marks. Of course it can also be Chinese characters, etc. Simply put,
represents text information.
Numbers are divided into two categories: integer numbers and floating point numbers.
Integers include positive integers, zero and negative integers.
Numbers in javascript can be written in decimal, octal and hexadecimal. The method is as follows:
Decimal: 15 (just write the number directly)
Octal: 017 (use zero as the leading number)
Hexadecimal: 0xf (use 0x as the leading number)
Floating point numbers are also called real numbers. For convenience, they can also be expressed using scientific notation:
1.13e1, 1.5e3 (equivalent to 1.5 times 10 raised to the third power)
java The numerical range of script is approximately between 10 to the power of negative 308 and 10 to the power of 308.
There is also a special numerical value NaN (not a number) in java script. Java script uses nan to represent this meaningless result.
Boolean values: true and false. In computers, 1 is generally used to represent true, and 0 is used to represent false.
The empty value is null, which means it does not represent anything.
The undefined value is undefined, sometimes equal to null, sometimes there may be a problem.
Special characters: also called escape characters. are some non-displayable special control characters starting with a backslash.
b: means backspace
n: means line break
etc.
Use of the alert() method:
alert() is a java script that generates a dialog box with a confirmation button, which displays the information in brackets.
Use of confirm() method:
confirm() is similar to alert(), the only difference is that there is an extra cancel button. Pressing OK returns true, pressing Cancel returns false.
<script> //这行是java script脚本标记,斜杠后面的就是注释了 <BR> document.write("在页面显示的java script") //在页面显示一句话 <BR> </script><script> <BR> alert("在页面上显示警告对话框"); <BR> </script> Use of prompt() method: <script> <BR> confirm("在页面上显示确认对话框"); <BR> </script> <script> <BR> var con; <BR> con=confirm("你们喜欢这样的教程吗?"); <BR> if (con==true) alert("喜欢"); <BR> else alert("不喜欢"); <BR> </script> <script> <BR> var name,age; <BR> name=prompt("请问您的名字?"); <BR> alert(name); <BR> age=prompt("多大?"); <BR> alert(age); <BR> </script> It can not only display information, but also input information.

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 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 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 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
