Front end Bootstrap Modal box plug-in
A Modal box is a child form that is overlaid on the parent form. In general, the purpose is to display content from a single source, with some interaction without leaving the parent form. Subform can provide information, interaction, etc. Before use, you need to refer to bootstrap.js or the compresse ...
Posted by rpanning on Sat, 01 Feb 2020 14:08:37 +0100
The first day of self learning java java web application
The first day of self study html+css
Part html
Learned how to label a form:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Introduction to form label properties</title>
</head>
<body>
<form action="#" method="get">
Hidden field:<input type="hi ...
Posted by yaron on Sat, 01 Feb 2020 03:05:40 +0100
About js confusion
Last year, I opened a js obfuscation tool and a js obfuscation restore tool according to the second open source tool. Today, I will talk about the general principle of this obfuscation tool and what I will do next. At present, the obfuscation result of this obfuscation tool is barely, and the following is before and after obfuscation
//Before c ...
Posted by daniel_lee_hill on Fri, 31 Jan 2020 20:20:16 +0100
VueJS ---- v-bind
v-bind
v-bind deals with tag attributes in html. For example, < div > < div > is a tag, < img > is also a tag,
For example, bind an src to an Img tag
html:
<div id="app">
<img v-bind:src="imgSrc" width="200px">
</div>
js:
Add imgSrc attribute in data for html to call
var app=n ...
Posted by legio on Fri, 31 Jan 2020 19:47:49 +0100
Flutter -- implementation of login interface
Contents of this article
Login interface design
Login page.dart login page code
Home page.dart
Mia.dart program entry code
3 Notes
Login interface design
In the development process of mobile App, almost no App will have a login interface, so we will use fluent to achieve the effect of login inte ...
Posted by maybl8r03 on Fri, 31 Jan 2020 19:21:05 +0100
Advanced knowledge of JavaScript
1 Function object
Section 1: Function object introduction
Function is the method object of js. You can use function instances to generate any js method object
The second section: creating method objects with Function
<script type="text/javascript">
/* function say(name,age){
alert(name+"T ...
Posted by Debbie-Leigh on Thu, 30 Jan 2020 16:17:12 +0100
Python full stack advanced programming skills 2. Class and object depth problems and Solutions
Article directory
1, Derive built-in immutable types and modify their instantiation behavior
2, Create a large number of instances to save memory
3, with statement in Python
4, Create manageable object properties
5, Class supports comparison operation
6, Management memory in ring data structure
...
Posted by Beans on Thu, 30 Jan 2020 11:40:30 +0100
Talk about the priority of artemis message
order
This paper mainly studies the priority of artemis message
priority
activemq-artemis-2.11.0/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/message/impl/CoreMessage.java
public class CoreMessage extends RefCountMessage implements ICoreMessage {
//......
protected byte priority;
public byte getPriority() {
...
Posted by mrinfin1ty on Wed, 29 Jan 2020 16:46:29 +0100
Analysis of the source code of concurrentmarksweetgeneration of Hotspot garbage collection
Contents
1, CardGeneration
1. Constructor
2,expand
3,compute_new_size
2, CMSBitMap
1. Constructor / allocate
2,mark / par_mark / mark_range / par_mark_range / mark_large_range / par_mark_large_range
3,isMarked / par_isMarked / isUnmarked /isAllClear
4,par_clear / clear_range / par_c ...
Posted by chitta_pk on Wed, 29 Jan 2020 11:35:29 +0100
Python foundation ⑥: classes and objects
1. The concept and structure of class
1) The concept of class
Like other languages, classes in python are collections used to describe objects with the same properties and methods. It defines the properties and methods that are common to each object in the collection. An object is an instance of a cla ...
Posted by atzi on Wed, 29 Jan 2020 07:09:07 +0100