JavaScript_DOM programming art Chapter05 best practices, Chapter06 picture library improved version -- 20210427
Chapter05
link
Pseudo protocol
Pseudo protocol that can be used to link JavaScript functions: javascript:
<a href="javascript:function_name(parameter)">Example</a>
<a href="javascript:pop('http://www.baidu.com/')">Example</a>
This is a very bad practice. It can only be used in browsers that support pseudo protocol ...
Added by tartou2 on Sat, 19 Feb 2022 01:59:27 +0200
Personal summary for element plus form validation
If you are Xiaobai, this set of information can help you become a big bull. If you have rich development experience, this set of information can help you break through the bottleneck 2022web full set of video tutorial front-end architecture H5 vue node applet Video + data + code + interview questions.
preface
Form verification can verify th ...
Added by Hellomonkey on Fri, 18 Feb 2022 22:50:57 +0200
HTML label framework character entity global attribute CSS basic syntax structure
HTML label framework character entity global attribute CSS basic syntax structure
1 Review
1.1 list
ul
ol
li
dl
dt
dd
1.2 forms
table
caption
thead
tfoot
tbody
tr
th
td
2 form
2.1 overall form settings
<!--form -->
<form action="http://www.baidu.com/s" target="_blank">
<!--Input box-->
<input type="text" ...
Added by simcoweb on Fri, 18 Feb 2022 20:57:48 +0200
CSS learning notes 4 (box model)
CSS learning notes 4 (box model)
Box model
Border properties
A border is a line that surrounds the width and height of a label Hyphenation (set four edges at the same time) Border: the width of the border, the style of the border, and the color of the border; Sample code
<style>
.box{
width: 100px;
...
Added by willwill100 on Fri, 18 Feb 2022 08:34:49 +0200
css and picture theme color
The idea comes from the skeleton screen in "performance optimization": In sites with a large number of pictures, this will be a very nice experience - picture loading is usually uncomfortable. Generally, the bitmap in a good skeleton is a low pixel picture, that is, the general color matching and change are consistent with the actual ...
Added by phillips321 on Fri, 18 Feb 2022 04:45:43 +0200
[JSTL] # simple use of JSTL: core tag c format tag fmt function
1. Core label
The core tag is the most commonly used tag of JSTL. When you want to use it, you can directly import it:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
1.1 <c:if>
Equivalent to if statement in java
<c:if test="Judgment conditions" var="Variables that store results" scope="var Scope of propert ...
Added by gtzpower on Thu, 17 Feb 2022 14:01:57 +0200
PHP two-dimensional arrays are sorted according to a field
There are two ways to sort a two-dimensional array according to a field. One is to write your own code through sort, and the other is to use array directly_ Multisort sort function
I Handwritten arraysort
PHP's one-dimensional array sorting function:
sort sorts the values of the array in ascending order (rsort descending order) without retai ...
Added by kalinkap on Thu, 17 Feb 2022 13:55:32 +0200
Basic HTML I (introduction, syntax, structure, common tags, picture tags, hyperlinks)
1. What is HTML?
HTML is a language used to describe Web pages
HTML refers to hypertext markup languageHTML is not a programming language, but a markup languageMarkup language is a set of markup tagsHTML uses tags to describe Web pages
2. Basic HTML syntax and relationship
Basic syntax:
HTML tags are keywords surrounded by angle brackets, ...
Added by adamgeorge on Wed, 16 Feb 2022 18:50:52 +0200
Java web learning record
javaweb
Shang Silicon Valley java web learning record
HTML
html files can be written directly by changing txt to a suffix. Use the browser to view the effect. Here are a few demo s to understand what html files can do and how to do it.
<html>
<head>
<title>This is my first web page</title>
<meta cha ...
Added by trufla on Tue, 15 Feb 2022 09:38:39 +0200
html front-end tutorial - video insertion methods compatible with each browser
Today, let's share the "HTML front-end tutorial - video insertion methods compatible with each browser "This article, based on the detailed introduction of example coding, may have a certain reference space and use value for everyone's programming road. Friends in need will learn from Yunnan Qianlong Mark next. There are two methods t ...
Added by adt2007 on Tue, 15 Feb 2022 08:59:17 +0200