Use JavaScript to create page effects

Use JavaScript to create page effects

11. Use JavaScript to create page effects

11.1 DOM Programming

DOM Programming (Document Object Model) Document Object Model

insert image description here

In DOM programming, the entire page is considered as a document object, in which the HTML element is a specific object. The core of DOM is to find the corresponding HTML element object, and then operate it (modify the attributes or style) and generate a new HTML element object.

11.2 Finding Elements in a Page in JS

  • Find the object through the form's name inclusion relationship: document.calForm.num1
  • Get an HTML element object through the id attribute of the HTML element:
  • document.getElementById(id)
  • Get multiple HTML element objects with the same name attribute value through the name attribute of the HTML element. Return an array that stores all objects with the same name attribute. document.getElementsByName(name) Get multiple HTML element objects with the same tag through the tag name of the HTML element.
  • document.getElementsByTagName(tagName)

11.2.1 Dynamic Time

The time displayed on the page is dynamic. When the page is started, the time is displayed. There are two types of time:

Server time (obtained through Java); client time (obtained through JS), displayed according to the time on each client.

insert image description here
insert image description here

11.2.2 Select All or Deselect All Function

insert image description here
insert image description here

This is the end of this article about using JavaScript to create page effects. For more relevant js page creation content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • The order of creating and mounting the vue.js page
  • Nuxt.js routing jump operation (page jump nuxt-link)
  • JS implements special effects of pictures when clicking the mouse on the page
  • Using JSP to implement a simple user login and registration page sample code analysis
  • How to use JSP pages in Spring Boot

<<:  MySQL database table partitioning considerations [recommended]

>>:  Deploy Nginx+Flask+Mongo application using Docker

Recommend

Installation and configuration method of Zabbix Agent on Linux platform

Here is a brief summary of the installation and c...

A brief discussion on ifnull() function similar to nvl() function in MySQL

IFNULL(expr1,expr2) If expr1 is not NULL, IFNULL(...

Baidu Input Method opens API, claims it can be ported and used at will

The relevant person in charge of Baidu Input Metho...

MySQL 4 methods to import data

1. Import mysql command The mysql command import ...

4 solutions to mysql import csv errors

This is to commemorate the 4 pitfalls I stepped o...

Solution to the problem of MySQL thread in Opening tables

Problem Description Recently, there was a MySQL5....

mysql8.0.11 winx64 installation and configuration tutorial

The installation tutorial of mysql 8.0.11 winx64 ...

Nginx defines domain name access method

I'm building Nginx recently, but I can't ...

WeChat applet implements text scrolling

This article example shares the specific code for...

Introduction to the use of anchors (named anchors) in HTML web pages

The following information is compiled from the Int...

Solution to Nginx SSL certificate configuration error

1. Introduction When a web project is published o...

Detailed explanation of the background-position percentage principle

When I was helping someone adjust the code today,...

How to use Antd's Form component in React to implement form functions

1. Construction components 1. A form must contain...

Solution to mysql server 5.5 connection failure

The solution to the problem that mysql cannot be ...

Vue.js implements tab switching and color change operation explanation

When implementing this function, the method I bor...