Javascript is a must-learn course for front-end development. The following are the first three courses for getting started. Let’s take a look.
Lesson 1
1: Main features of javascript
Interpreted: no need to compile, the browser directly interprets and executes
Object-based: we can use JS directly Objects that have been created
Event-driven: Can respond to client input in an event-driven manner without going through the server-side program
Security: Access to the local hard disk is not allowed, and data cannot be written to the server
Cross-platform: js depends on the browser itself and has nothing to do with the operating system
Lesson 2
How to write Javascript in the webpage
1: Embed Javascript directly in the page
javascript can be inserted in the middle of the
can also be placed in the in the middle of tags
Most commonly placed between tags
The case is as follows, insert the javascript code in
in the middle of the label.<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>初学javascript</title> <script language="javascript"> var now=new Date();//获取Date对象的一个实例 var hour=now.getHours();//获取小时数 var min=now.getMinutes();//获取分钟数 alert("当前时间"+hour+":"+min+"\n欢迎访问柠檬学院http://www.bjlemon.com/"); </script> </head> <body> </body> </html>
Case 2 code is as follows
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>我的年月日</title> <script language="javascript"> var now=new Date();//获取日期对象 var year=now.getYear()+1900;//获得年,在js中年份需要加1900才可以显示此时此刻的年份 var month=now.getMonth()+1;//获得月份,月份是0-11,所以在js中需要加1 var date=now.getDate();//获得日 var day=now.getDay();//获得星期几 var day_week=new Array("礼拜日","礼拜一","礼拜二","礼拜三","礼拜四","礼拜五","礼拜六"); var week=day_week[day]; var time="当前时间:"+year+"年"+month+"月"+date+"日"+week; alert(time); </script> </head> <body></body> </html>
2: Reference to external Javascript
If the script is more complex or the same code is used by many pages, you can use these scripts The code is placed in a separate file with the extension .js, and then the javascript file can be linked to the web page where the code needs to be used
(Recommendation) It is generally better to write the above code in the middle of
In the file with the .js suffix , there is no need to use <script></script> tags to enclose
means that the getDate() method getdate() is called when the page is loaded. It is a method defined in a file with a .js suffix
The suffix in this case is .html
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>引用外部的js</title> <script language="javascript" src="js1.js"> </script> </head> <body onload="getdate()"> </body> </html>
The suffix in this case is .js
function getdate(){ var now=new Date();//获取日期对象 var year=now.getYear()+1900;//获得年,在js中年份需要加1900才可以显示此时此刻的年份 var month=now.getMonth()+1;//获得月份,月份是0-11,所以在js中需要加1 var date=now.getDate();//获得日 var day=now.getDay();//获得星期几 var day_week=new Array("礼拜日","礼拜一","礼拜二","礼拜三","礼拜四","礼拜五","礼拜六"); var week=day_week[day]; var time="当前时间:"+year+"年"+month+"月"+date+"日"+week; alert(time); }
Lesson 3
javascript Syntax
1: JavaScript syntax
1.1: JS variables are case-sensitive
Usename, useName are two different variables
1.2: The semicolon at the end of each line is optional. If there is no semicolon at the end of the statement, then js
will automatically use the end of this line of code as the end of the statement
alert("hello world");
alert("hello world")
1.3 : The variable is a weak type
Only use the var operator when defining a variable
For example: var usename="biexiansheng";
var age=22;
1.4: Use braces to label code blocks
{ //Code} Statements encapsulated in curly brackets are executed in order
1.5: Comments
1.5.1: Single-line comments //
Single-line comments start with a double slash "//" and end with " //"The text following is the comment content
The content of the comment has no effect during code execution.
var now=new Date();//Get the date object
1.5.2: Multi-line comment /**/
Multi-line comments start with /* and end with*/ ends, the content between the two is the comment content
It has no effect during code execution.
/*
*Function: Get the current date
*Author: biexiansheng
*/
Function getClock () {
// content
Lesson 4
Data types of JavaScript (no matter how many data types there are in JavaScript, you can only use var when declaring)
1: Numeric type
Integer: 123 //Decimal
0123 Use scientific notation
3.1415926 //Standard form of floating point number
3.14E9 //Use scientific notation to represent 3.14 times 10 raised to the 9th power
2: Character Type
Character data is one or more characters enclosed in single or multiple quotes
For example: 'a' 'hello world'
'a' "hello world"
None in javascript char data type
If you want to represent a single character, you must use a string of length 1
Single quotes include double quotes '"hello"'
Double quotes include single quotes "'world'"
3: Boolean type
Boolean type data only has true or false. In js, you can also use the integer 0 to represent false, and use a non-0 integer to represent true
4: Escape characters
Non-displayable special characters starting with a backslash are often called control characters, also known as escape characters
\bBackspace \nLine feed \fPage feed \tTab character \'Single quote \" Double quote \ \Backslash
5: Null value
null, used to define empty or non-existent references
For example, var a=null;
6: Undefined value
Variables that have been declared but not assigned a value
var a;
alert(a);
Pop up undefined is a keyword used to represent undefined values
Array type, an array is a sequence containing basic and combined data. In the JavaScript scripting language
Each data type corresponds to an object, and the data is essentially an Array object.
var score=[. 45,56,45,78,78,65];
Since the array is essentially an Array object, the operator new can be used to create a new array, such as
var score=new Array(45,65,78 ,8,45);
Accessing a specific element in the array can be achieved through the index position of the element, as shown in the following statement
The variable returns the 4th element in the array score
var m=score[3 ];
Lesson 5
1: Naming rules for variables
Variable names consist of letters, numbers, and underscores, but cannot start with numbers
No Use keywords in javascript
Strictly case-sensitive
For example username username
2: Variable declaration
var variable
You can use one var to declare multiple variables, such as
var now ,year,month,date;
You can assign a value to a variable while declaring it, that is, initialize it
var now="2016-8-11",year="2016",month="8", date="11";
If you just declare a variable without assigning a value, the default value of the variable is undefined
JavaScript is a weak type. You do not need to specify the type of the variable when declaring it. The type of the variable Decise the statement of
global variables based on the value of the variable: 1: The statement in the function of the function is a global variable, whether there is VAR statement
2: The variable that uses VAR declaration inside the function body is the variable is the variable is the variable that is declared in the function body. Local variables, variables declared without var are global variables
//If you assign a value to a variable type that has not been declared, javascript will automatically use the variable to create a layout variable
For example: a="hello world";
funcation test(){
var c="local variable";//This c is a local variable, and it is also the only way to define a local variable
b="All variables";//This b is also a total variable
}
Function test2(){
Alert(b);
}
#3: The scope of the variable
The scope of the variable refers to the effective range of the variable in the program
All Variables: variables defined outside all functions, acting on the entire code
Local variables: variables defined within the function body, acting only on the function body
Application of Operators Lesson 7
1: Assignment operator
Simple assignment operator
For example, var useName='tom';//Simple assignment operator
Compound assignment operator
a+=b;//Equivalent to a =a+b;
a-=b;//equivalent to a=a-b;
a*=b;//equivalent to a=a*b;
a/=b;//equivalent In a=a/b;
a%=b;//equivalent to a=a%b;
a&b=b;//equivalent to a=a&b;logical AND operation
a|=b ;//Equivalent to a=a|b; logical OR operation
a^=b;//Equivalent to a=a^b; logical NOT operator
2: Arithmetic operator
+ - * / %
++ Before ++ add first and then use. After ++ use first and then add.
-- before - before subtracting first and then use. After - before using first and then subtracting.
Note: When performing division operation , 0 cannot be used as a divisor. If 0 is used as a divisor, the keyword infinity
3 will be returned: comparison operator
>greater than
===Absolute equals Not only determines the surface value, but also determines whether the data types are the same.
! = is not equal to It is only judged based on the surface value and does not involve the data type.
! == is not absolutely equal. It not only determines the surface value, but also determines whether the data types are the same.
4: Logical operator
! Logical NOT
&&Logical AND. Only when the values of both operands are true, the result will be true
||Logical OR. If only one of the two operands is true, the result is true
5: Conditional operator
The conditional operator is a special ternary operator supported by JavaScript
Grammar format: Operand? Result 1: Result 2;
If the value of the operand is true, the result of the entire expression is result 1
If the value of the operand is false, the result of the entire expression is result 2
6 :String operator
Two ways to connect strings
+. var a="hello"+"world";
+=. var a+="hello world!!!";
Flow control if, switch statement
1: if conditional judgment statement
1:if(expression){
//Execute the statement inside when expression is true
}
2: If (Expression) {
// Expression is executed in the sentence
} Else {
// Expression is the statement in the execution of the execution
}
3:if(expression){
//Execute the statement inside when expression is true
}else if(expression1){
# }else if(expression2){
use using ’ ’ s ’ use using ’ using ’s ’ using ’s ’ using ’s using ’s ‐ to ‐execute the statement
# //Specify else when neither is satisfied
}
2: switch statement
Advantages: good readability, easy to read
Syntax format
switch(expression){
case condition 1: statement 1;
break;
case condition 2: statement 2;
break;
case condition 3: statement 3;
break;
case condition 4: Statement 4 ; #For, while, do-while statement of process control
1: for loop statement
Syntax format
for(1 initial condition; 2 loop condition; 4 growth step){
3 statement body ;
}
//Execute the initial condition first, and then determine whether the loop condition returns true,
//If it returns false, terminate the condition. If it is true, execute the statement body,
//Then execute Growth pace
//1->2true->3->4->2true->3->4
//1->2false->3-> 4->2false End of for loop
Example
var sum=0;
for(var i=0;i Sum+=i;
}
alert(sum);
2: while loop statement
Syntax format
while(expression1){
2 statement body;
}
1true->2-> ;1true->2.....
Example
var sum=0;
var i=1;
’ s ’ s ’ ’ s ’ ‐ ‐ ‐ 1 true‐>2..... # i++;
}
alert(i);
Syntax format
do{
1Execution loop body
}while(2 judgment condition);
1->2true->1->2true.....
Note: The while loop first determines whether the condition is established, and then based on the result of the judgment
Whether to execute the loop body
The do-while loop executes the loop body once first, and then determines whether the condition is true.
So the do-while loop can be guaranteed to be executed at least once.
Example
var sum=0;
var i=1;
do{
}sum+=i;
}while(i alert(sum);
The above is the detailed content of JavaScript introductory study guide for beginners. For more information, please follow other related articles on the PHP Chinese website!

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


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

SublimeText3 Mac version
God-level code editing software (SublimeText3)

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.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
