Four ways to get data from a foem form: (you can receive data submitted by post and get)
In our daily work or browsing the web, we often use and see many functions and styles of form submission. This function is realized by form form and some JavaScript or jQuery.
Now let's use Visual Studio 2015 to verify it. There are four methods to obtain data from form.
1. Receive the data submitted by the form through formal parameters.
2. ...
Posted by mallard on Wed, 09 Feb 2022 01:55:25 +0100
Front end learning [html basics]
Html basic learning
Learning website: freeCodeCamp
1. Title element h
<h1> Primary title </h1>
<h2> Secondary title </h2>
.......
2. Paragraph element p
<p> paragraph </p>
By convention, all HTML tags should be lowercase
3. Notes
<!--
I am html Notes for
-->
<p>
There are notes on it
& ...
Posted by ASDen on Tue, 08 Feb 2022 18:14:45 +0100
[New Star program] Vue JS actual combat series: project development of video WebApp -- 12 Vuex is introduced to realize data management and login process
If you want to see the rest of this series, please move to Vue.js actual combat series to realize the project development of video WebApp.
Project warehouse address Welcome, Star
Realization effect
Function realization
Introduce Vuex
What is Vuex? Vuex is designed for Vue JS application development state management mode. It ...
Posted by maxedison on Tue, 08 Feb 2022 15:26:03 +0100
JavaScript expressions and operators
Addition assignment (+ =)
The addition assignment operator (+ =) adds the value of the right operand to the variable and assigns the result to the variable. The type of the two operands determines the behavior of the addition assignment operator. Addition or concatenation is possible.
let a = 2;
let b = 'hello';
console.log(a += 3); // addit ...
Posted by harshilshah on Tue, 08 Feb 2022 11:15:56 +0100
Using CSS Grid to build complex layout is a super practical skill!
Author: shadeTranslator: front end XiaozhiSource: dmitripavlutinThere are dreams and dry goods. Wechat search [Daqian world] pays attention to this dish washing wisdom who is still washing dishes in the early morning.This article GitHub https://github.com/qq449245884/xiaozhi There are some complete series of articles and interview materials in ...
Posted by jasonscherer on Tue, 08 Feb 2022 09:29:48 +0100
Front end learning day21&day22: forms and tables
1. Form
① Function of form
Collect the information of the client. When the visitor enters the information in the form and clicks the submit button, the information will be sent to the server, and the server script or application will process the corresponding information. When the server responds, it will return the requested data to the clie ...
Posted by noisyscanner on Tue, 08 Feb 2022 03:36:51 +0100
GUI programming --- Snake game development
① First knowledge theory Frame: the time slice is small enough = "is the animation, 1 second 30 frames. Connect is animation, open is static picture! Keyboard monitor Timer timer
② Game development ideas
(define data, draw a panel, and listen for events (keyboard / event))
1. First of all, a game main startup class, StartGame class, in ...
Posted by MikeUK on Tue, 08 Feb 2022 00:00:51 +0100
Web front end training notes 4
Source
video
green hand
css common attribute settings
background
Text
Alignment
display attribute
Float
Code 1
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Common properties</title>
<style type="text/css"">
#div1 {
/*width: 5eepx;*/
...
Posted by ivi on Mon, 07 Feb 2022 13:59:12 +0100
Summary of some knowledge points of CSS
CSSBaidu's definition: Cascading style sheets (English full name: Cascading Style Sheets) is a computer language used to represent file styles such as HTML (an application of Standard General Markup Language) or XML (a subset of Standard General Markup Language). CSS can not only modify the web page statically, but also format the elements of t ...
Posted by joesaddigh on Sun, 06 Feb 2022 21:27:18 +0100
HTML < template > tags in Vanilla JavaScript and Vue
HTML Template Tag in Vanilla JavaScript and Vue - DEV Communityhttps://dev.to/therealdanvega/html-template-tag-in-vanilla-javascript-and-vue-5eoo
Over the past few months, I've been writing a lot of documents, tutorials, and exercises around VueJS and Vanilla JavaScript. In some cases, I am Tech Elevator This is a coding training camp, which c ...
Posted by Scooby08 on Sun, 06 Feb 2022 21:01:42 +0100