Re combing the basic knowledge of ECMAscript in JavaScript

catalogue 1, Operator 1. Arithmetic operator Find the area of a circle 2. Assignment operator 3. Unary operator 4. Comparison operator 5. Logical operators 6. Operator priority 2, Statement 1. Expressions and statements 2. Branch statement 1.if branch statement Case: Case: 2. Ternary operator Case: 3.switch statement Case: s ...

Posted by Matt Kindig on Mon, 06 Dec 2021 12:48:38 -0800

Day 3 - jQuery

Learning objectives: Can name four common registration events, can name the advantages of on binding events, can name the advantages and methods of jQuery event delegation, can name binding events and unbinding events, can name the copy method of jQuery objects, can name two methods of jQuery multi library coexistence, and can use jQuery ...

Posted by alevsky on Sat, 27 Nov 2021 20:52:35 -0800

Day 2 - jQuery

Learning objectives: Be able to manipulate jQuery attributes, jQuery elements, and jQuery element size and position 1.1. jQuery attribute operation jQuery has three common attribute operations: prop() / attr() / data(); 1.1.1 element intrinsic attribute value (prop) The so-called element intrinsic attributes are the attributes of th ...

Posted by ckuipers on Sat, 27 Nov 2021 10:21:47 -0800

JQuary (from native js to jq, jq is easy)

1. Introduction to jquery jQuery is an excellent JavaScript library that enables more functionality with minimal code characteristic: 1. Powerful selector function  $ ("selector") 2. Introduction to grammar  $ ("selector").action() 3. Implicit iteration  $ ("div").click();   // Five div will ...

Posted by kestasjk on Mon, 22 Nov 2021 18:32:55 -0800

Summary of jQuery knowledge points

1.jQuery Is a fast, compact, feature rich third-party JavaScript library Function: 1. Select HTML element 2. Operation elements 3.CSS operation 4. Operation HTML event ​ ... Use: import links to required HTML files 1. Direct introduction of network resources 2. Download network resources locally to import ​ 2. Use of jquery 2.1 $(s ...

Posted by Viruthagiri on Sat, 20 Nov 2021 22:07:44 -0800

Summary notes for javaScript and jquery

Pay attention to me when I study, learn something by myself and some useful little things! In the future, you will also send some projects you have done and how to solve the problems you encountered. . JavaScript Common Events onclick//Mouse Stand-alone Object onmouseover//Mouse pointer is moved over an element onmouseout//Mouse pointer leave ...

Posted by greens85 on Sat, 20 Nov 2021 12:13:25 -0800

Node.js implements login verification + Tab (improved version)

requirement Question 1: Use the express framework of Node.js and JQuery to complete the following requirements: 1. Design a login page. It is required to enter the user name, password and login button on the login page. 2. When clicking the login button, use JQuery's AJAX to post the contents of the form. 3. Use node.js and express to b ...

Posted by KissMyBrain on Sat, 20 Nov 2021 11:51:09 -0800

Basic operations of Jquery

1, Method of use    jQuery does not need to be installed. To use it, you only need to import a js file, which can be placed on an external site or on your own server. However, in the actual development process, it is more convenient to use the local server.   major development companies provide CDN downloaded by jquery. This ...

Posted by Lodius2000 on Fri, 19 Nov 2021 21:17:29 -0800

Getting started with JavaEE and Mybatis

1: Introductory case 1: First create a new module = = > set the Java version to 8 = = > find the following components, check and Finish 2: Write the structure as shown in the following figure controller layer UserController class ​ package com.mybatis.mybatis.controller; import com.mybatis.mybatis.entity.User; import com.mybatis ...

Posted by fansa on Tue, 16 Nov 2021 03:49:22 -0800

JQuery in the second phase of java

1, Introduction to JQuery (1) Introduction          JQuery is a fast and concise JavaScript framework. The purpose of jQuery design is "write Less, Do More", which advocates writing less code and doing more things. It encapsulates the common functional code of JavaScript, provides a simple Jav ...

Posted by agisthos on Sun, 07 Nov 2021 23:18:01 -0800