A brief discussion on tags in HTML

A brief discussion on tags in HTML

0. What is a tag?

XML/HTML CodeCopy content to clipboard
  1. < input   type = "checkbox" checked /> < a   href = "http:www.jb51.net"   title = "123"   id = " lol " > Tips </a>   

Here checked, id, href, and title are tags.

1. Boolean flags

Checked as an example

Existence is application, used to mark the status,

If the flag is present, the value of getAttribute is always checked. If the flag is not present, the value of getAttribute is undefined.

By operating the value through setAttribute and removAttribute, it will act on the checked attribute, and the value of the checked attribute is true or false.

Assigning a value to the checked attribute will not have any effect on the checked flag.

2. Data labeling

Take title as an example

The value of the attribute title is always the same as the value of the tag title

The assignment of a value to the attribute title affects the existence (from nothing to something) and value of the tag title.

The above brief discussion on the tags in HTML is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

<<:  Detailed explanation of using MySQL where

>>:  Do you know how to optimize loading web fonts?

Recommend

Detailed explanation of HTML tables

Function: data display, table application scenari...

Implement a simple search engine based on MySQL

Table of contents Implementing a search engine ba...

How to install nginx in docker and configure access via https

1. Download the latest nginx docker image $ docke...

Build nginx virtual host based on domain name, port and IP

There are three types of virtual hosts supported ...

Use html-webpack-plugin' to generate HTML page plugin in memory

When we package the webpackjs file, we introduce ...

Details on overriding prototype methods in JavaScript instance objects

Table of contents In JavaScript , we can usually ...

Example of Vue implementing fixed bottom component

Table of contents 【Effect】 【Implementation method...

In-depth explanation of Session and Cookie in Tomcat

Preface HTTP is a stateless communication protoco...

CSS3 frosted glass effect

If the frosted glass effect is done well, it can ...

Implementation of dynamic rem for mobile layout

Dynamic rem 1. First, let’s introduce the current...

New ways to play with CSS fonts: implementation of colored fonts

What if you designers want to use the font below ...

js memory leak scenarios, how to monitor and analyze them in detail

Table of contents Preface What situations can cau...

JavaScript ES new feature block scope

Table of contents 1. What is block scope? 2. Why ...

Application examples of WeChat applet virtual list

Table of contents Preface What is a virtual list?...