Jquery+Css+Html enables front-end verification of login user and password and user login
Jquery+Css+Html enables front-end verification of login user and password and user login
preface
Application scenario: the login of any program can be realized, and the front-end verification of user name, password memory, or mobile phone number, email and other information can be verified.
Tip: the following is the main content of ...
Added by ysu on Sun, 09 Jan 2022 10:05:02 +0200
Front end notes summary
catalogue
catalogue
Front end Foundation
HTML
1. Basic label
2. Page structure analysis
3. Advanced label
CSS
1. Basic knowledge
2. Beautify web pages
JS
1. Basic knowledge
2. Detailed description of data type
3. Function
4. Object oriented programming
5. Operate BOM object (key)
6. Operating DOM objects (key points)
7. Ope ...
Added by djelica on Thu, 06 Jan 2022 06:20:05 +0200
jQuery self study notes
1, Selector for JQuery
1.1 basic selector
nameusagedescribeid selector$('#id');Gets the element with the specified IDClass selector $('.class');Get elements of the same classtag chooser $('div');Gets all elements of the same class of labelsUnion selector$('div,p,li');Use commas to separate as long as one of the conditions is metIntersecti ...
Added by dfarrar on Wed, 05 Jan 2022 15:16:23 +0200
Getting started with the BootStrap framework
Getting started with the BootStrap framework
Download bootstrap source code https://v3.bootcss.com/getting-started/ 2. Download jQuery JS file: https://jquery.com/ 3. Create a new project, copy the dist folder in the bootstrap folder to the project package, and rename it bootstrap; 4. JQuery Copy the js file to the js folder. 5. Layout cont ...
Added by greenhorn666 on Wed, 05 Jan 2022 14:48:02 +0200
Fourth quarter of Web front end (jQuery): Seven: 604 - write validation verification rules + 605 - complete validation verification (end of course)
catalogue
I objective
1. Want to: Learn front-end knowledge
2. Think: take notes. Next time, you don't need to watch the video. You can quickly recall by looking at the notes directly.
II reference resources
1. GitHub website of my own code
2.SIKI College: I refer to this video for practice
3.w3school official website: used as a dictio ...
Added by Loriq on Wed, 05 Jan 2022 09:45:55 +0200
jQuery self study notes
1, Dynamically create elements
1. Native js create node
document.createElement(); Note: create element node document.createTextNode(); Note: create text node
2. jQuery create node
html(): set or get content
Get content: the html() method does not give parametersSetting content: parameters of html() method $('#btnHtml1').click(fu ...
Added by manianprasanna on Tue, 04 Jan 2022 12:34:02 +0200
jQuery common events
JQuery several common events
1. Event ready(fn)
When the DOM (document object model) has been loaded and the page (including image) has been fully rendered, the ready event will occur. Generally speaking, this function event will be executed when the page is loaded. You can use $(document) in the same page infinitely Ready() event. The regist ...
Added by animedls on Mon, 03 Jan 2022 10:56:59 +0200
jQuery-01: basic syntax operation
1. Entry function
Portal on official website: https://jquery.com/jQuery file download: https://code.jquery.com/jquery-1.12.4.min.jsOfficial document portal: http://jquery.cuishifeng.cn/index.html
Js native entry function: window.onload = function(){ }Jq entry function: Abbreviation: $(function() {}) Standard: $(document) ready(function () ...
Added by David Bethel on Sun, 02 Jan 2022 09:17:09 +0200
Front end - jQuery Basics
Daily share:
In the cold winter season, learn to say goodbye to the past, follow the past, and see you later.
I hope that on the way to the future, we have endless love, such as bright stars and free wind.
catalog:
Introduction to jQueryjQuery DownloadUse of jQueryjQuery selectorjQuery selection set filteringjQuery selection set transfer
1, ...
Added by steveclondon on Fri, 31 Dec 2021 21:01:32 +0200
[Lesson 8] JS basic syntax; string Api
target
Understand JS basic syntax
How to create variablesThe difference between let, var and constUnderstand and master process control and other related grammardeconstructionTemplate string Master string Api
Development process of ES6
ECMAScript 6.0 (ES6) is a new generation standard of JavaScript language. It was officially released in ...
Added by johntp on Tue, 28 Dec 2021 17:21:31 +0200