css brother selector with mouse click to achieve different effects

css brother selector with mouse click to achieve different effects The last case completed: beautification of form elements (radio box) When writing a web page, especially when completing a certain effect with the mouse state, it is found that the corresponding effect can be achieved by using the pseudo class with the corresponding selecto ...

Added by TapeGun007 on Wed, 29 Sep 2021 20:32:20 +0300

Five simple tips for improving readability and maintainability of code

      1. Use verbs such as "is" or "can" as the prefix of Boolean variables                  When declaring Boolean variables, add verbs such as "is" or "can" before the variable name to help reader ...

Added by mazen on Wed, 29 Sep 2021 04:27:02 +0300

JavaScrip Notes Experience (Continuous Update)

Introduction to JavaScript 1,JavaScript 1.1. Why learn JavaScript? Verify user inputEffectively organize web contentDynamic display of web page contentCompensate for features that static web pages cannot achieveAnimation Display 1.2. Introduction to JavaScript JavaScript is an object-based scripting language originally designed and imp ...

Added by TMX on Tue, 28 Sep 2021 19:40:07 +0300

asp.net core hands-on item (09) - exception handling

This article explains the technical essentials related to asp.net core exception handling. Configuring the asp.net core development environment Asp.net core divides the development environment for Web applications into Development, Staging, and Production. These different environments mean self-describing and are no longer explained. In a dev ...

Added by internet-solution on Sat, 25 Sep 2021 20:08:38 +0300

WebApi notes_ 2_ Event advanced

Event advanced 1. Registration event (binding event) 1.1 overview of registration events Adding an event to an element is called a registration event or a binding event. There are two ways to register events: traditional method and method listening registration method. Traditional registration method: Use the event onclick startin ...

Added by capbiker on Sat, 25 Sep 2021 03:43:07 +0300

HTML5 and CSS3 improve

1, New features of HTML5 1.1 new label : header label : navigation tab : content label : defines an area of the document : sidebar labels : tail label <body> <header>Header title</header> <nav>:Navigation tab</nav> <acticle>:Content label&l ...

Added by aruns on Fri, 24 Sep 2021 13:34:42 +0300

I see the wonderful "inheritance" of JavaScript

Inheritance plays an important role in various programming languages. Due to the "natural" flexibility of JavaScript, JS urgently needs a reusable and standardized solution in some scenarios. Classes and inheritance naturally appear in the public's vision. With the continuous in-depth study of JavaScript, we suddenly found that the c ...

Added by grahamb314 on Wed, 22 Sep 2021 19:44:07 +0300

General learning and sorting of JavaScript

1, Composition of JavaScript ECMAScript: (core) specifies the Js syntax and basic objects DOM: method and interface of document object model to process web page content markup document html operation document elements BOM: browser objects, manipulating browsers 2, Introduction of JavaScript Internal script mode <script type = "te ...

Added by trochia on Tue, 21 Sep 2021 10:54:21 +0300

3, Java Web Foundation (detailed explanation of xml documents)

1, Concept: Extensible Markup Language 1. Extensible: Labels are custom< user> <student> 2. Functions: Store dataconfiguration fileTransmission in the network 3. The difference between XML and html xml tags are customized and html tags are predefined.The syntax of xml is strict and that of html is loosexml is used to store dat ...

Added by mattchewone on Tue, 21 Sep 2021 05:54:06 +0300

Common HTML Tags

1. Title Label h refers to headline, meaning label. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Title Label</title> </head& ...

Added by twmcmahan on Mon, 20 Sep 2021 22:59:17 +0300