jQuery Use Notes
jQuery Foundation
Introduction to jQuery
A fast, lightweight, rich JavaScript class library
Official jQuery website: https://jquery.com
jQuery development documentation: http://www.bejson.com/apidoc/jquery
jQuery Advantages
Open source, free, easy to learn
Good compatibility
A powerful selector
Chain operation
Convenient dom operation
...
Added by Cyberspace on Sun, 23 Feb 2020 04:44:42 +0200
Using Rust to develop operating system (UEFI Abstract file system)
In the previous article, we introduced the basic use of rust in UEFI. In this chapter, we started to write the basic UEFI settings, mainly including File structure and UEFI compilation script to simplify the kernel File reading and qemu startup process
Build base exception
Results are provided for us ...
Added by jackpf on Fri, 21 Feb 2020 07:36:34 +0200
ionic4 notes UI components, colors, buttons, icons, etc
1. Built in colors in ionic4.x
primary secondary tertiary success warning danger dark medium light
Only one color needs to be remembered, such as success, because it can be found in the project
Use of color: directly add color to the label, enter i-color to enter the drop-down prompt, you can ...
Added by fordyh on Thu, 20 Feb 2020 13:04:15 +0200
Webapis DOM, get elements, event basis, operation elements, recommended collection!
Web APIs
Learning objectives:
Can get elements through ID
Ability to get elements by tag name
Can get elements through class
Ability to get elements through selectors
Can get body and html elements
Ability to register events for elements
Ability to modify element content
Be able to distinguish between ...
Added by djetaine on Wed, 19 Feb 2020 12:01:31 +0200
Preliminary understanding of HTML
1: Tool preparation
vscode is recommended for tools:
Download address:
================Official website address ================
================Baidu SkyDrive ================
Use the default extension program to download and box to download the required development tools
Here are the extension p ...
Added by Sorrow on Wed, 19 Feb 2020 09:12:48 +0200
Analysis of nginx http block configuration
In the last article, we explained the storage structure of nginx http module, which is the cornerstone of our understanding of the working principle of http module. This article mainly explains how nginx builds the storage structure of http module step by step by parsing the http configuration block in nginx.conf.
1. Analysis of HTTP configurat ...
Added by xposed on Tue, 18 Feb 2020 06:21:52 +0200
Java Concurrent Programming Basic type atomic class initial use plus source code analysis
Java Concurrent Programming Basic type atomic class initial use plus source code analysis
Let's first look at the atomic classes.
Now let's see how to use these atomic classes.
AtomicInteger
Code:
package atomic;
import java.util.concurrent.atomic.AtomicInteger;
public class AtomicIntegerDemo1 impl ...
Added by Discord on Tue, 18 Feb 2020 06:12:17 +0200
Java Web notes - JSP&EL&JSTL
JSP:
1. instruction
*Function: used to configure JSP pages and import resource files
* format:
<% @ instruction name property name 1 = property value 1 property name 2 = property value 2...% >
* classification:
1. page: configure the
*contentType: equivalent to response.setContentType() ...
Added by jwadenpfuhl on Tue, 18 Feb 2020 05:12:31 +0200
Implementing general read and write of json data in unity
Using the LitJson plug-in
Used by LitJson
Just drag ListJson.dll into the Unity Assets folder to reference it in the code.
Let's encapsulate Litjson to make it more convenient for Unity.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using LitJson;//Introducing plug-i ...
Added by peter.t on Tue, 18 Feb 2020 04:41:18 +0200
A brief introduction of jdk1.8 implementation principle of ArrayList
1. Overview of ArrayList
1.1ArrayList features
ArrayList is a dynamic array that implements the List interface
ArrayList can allow element to be Null
ArrayList is thread unsafe
1.2 ArrayList data structure
The underlying data structure of ArrayList is array. The array element type is Object typ ...
Added by MrRosary on Mon, 17 Feb 2020 09:37:57 +0200