JavaScript_ Add, delete and modify (add, delete and modify)

1, Requirement description 1. Add After entering basic information (name, gender, age, city) through the input box, click the OK button to add an item of information to the table; Clicking reset will clear the information you entered. 2. Delete Click the delete button after each item of information in the table, and click OK in the pop-up O ...

Added by danscreations on Thu, 09 Dec 2021 19:27:11 +0200

Magnifying glass case

catalogue 1. First, build the HTML structure: 2. Get element 3. The mouse passes through the small picture box, the Yellow occlusion layer and the large picture box are displayed, and 2 boxes are hidden when leaving 4. Get the coordinates in the mouse sub box 5. At this time, the mouse is located in the upper left corner of the Yellow mask ...

Added by RDFrame on Wed, 08 Dec 2021 07:45:54 +0200

JavaScript WebGL draws a line

Introductionnext WebGL basic concepts , do a simple example of drawing a straight line.Mainly refer to the following two articles:Draw a pointDraw triangleOriginMy GitHubDraw a lineI won't explain each function in detail below. I prefer to have a sense of the overall logic first, and then check the data as needed during actual use.Create WebGL ...

Added by cmos on Wed, 08 Dec 2021 00:33:14 +0200

HTML+ CSS+JavaScript actual combat -- imitation muke.com [easy to use]

Java learning punch in: day 89 javaWeb Java cultivation program (punch in day 85) Web project HTML+CSS + JavaScript+JQuery [JQuery is rarely used, only for animation] Web project [imitation Muke network project] Here, in order to get familiar with what I learned earlier, it refers to HTML and CSS plus JavaScript. If you need the so ...

Added by blmg911 on Tue, 07 Dec 2021 17:15:30 +0200

Front end training ---- box model (with exercises)

catalogue 1, Web page layout process 2, Composition of box model Border border content padding inner margin margin outer margin 3, Border border Compound writing of border Border separation: padding abbreviation: Block level elements are horizontally centered Clear inner and outer margins: 4, Box model exercise 1. Making wedding dres ...

Added by Shadow Wolf on Tue, 07 Dec 2021 16:42:02 +0200

HTML-form (easy to understand)

Forms: Forms are mainly used to make dynamic web pages for easy interaction with users Form syntax: <form method=" " action=" " enctype="multipart/form-data"></form> When enctype uses file fields in a form, the enctype encoding property of the form must be set to "multipart/form-data", which means that the form data is ...

Added by pulsedriver on Mon, 06 Dec 2021 20:27:52 +0200

js Chapter 2 Basic Grammar Cases: Sum of odd numbers within 100, Print Pyramids, Nine-Nine Multiplication Table, Calculate Circle Perimeter and Area

1. Sum of odd numbers within 100 <script> var i = sum = 0; while (i <= 100) { if (i % 2) { sum += i; } i++; } console.log('100 Sum of odd numbers within:' + sum); </script> 2. Print pyramids. Print a pyramid-shaped graphic using circular statements and conditional judgment statements, consisting of ...

Added by stbalaji2u on Fri, 03 Dec 2021 19:31:53 +0200

Summary of Personnel Management System

Personnel Management System 1. Create a project 1.1 Create projects using reverse engineering Automatically generate entity class bean s, mapper interfaces, and mapping files 1.2 pom.xml Writing Import Dependency <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</art ...

Added by chimp1950 on Thu, 02 Dec 2021 17:58:17 +0200

[back end integration] new program Day6

1. SpringMVC 1.1 restFul style 1.1.1 traditional get submission url1: http://localhost:8080/findUser?name=tomcat&age=18 url2: http://localhost:8080/findUser?name=tomcat&age=18&sex= male Requirements: the above parameter transfer can be simplified! Simplified: url3: http://localhost:8080/findUser/tomcat/18/ male   1.1 ...

Added by lordzardeck on Wed, 01 Dec 2021 16:15:45 +0200

vue calculated and monitored attributes

Calculation properties   - computed Definition: the attribute to be used does not exist. It must be calculated from the existing attribute Principle: the bottom layer uses getter s and setter s provided by the Object.defineproperty method   The following case: calculate the full name by the following last name and first name &nbsp ...

Added by Craig_H on Wed, 01 Dec 2021 08:24:23 +0200