Summary of three ways to create new elements

Summary of three ways to create new elements

First: via text/HTML

var txt1="<h1>Text.</h1>";

Second: Through jQuery

var txt2=$("<h2></h2>").text("Text.");

The third method: through JavaScript/DOM

var txt3 = document.createElement("h3");
txt3.innerHTML="Text.";

The above summary of three methods of creating new elements 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.

Original URL: http://www.cnblogs.com/SoYang/p/5677589.html

<<:  Solution to Navicat Premier remote connection to MySQL error 10038

>>:  ReactHooks batch update state and get route parameters example analysis

Recommend

Solution to mysql login warning problem

1. Introduction When we log in to MySQL, we often...

mysql charset=utf8 do you really understand what it means

1. Let's look at a table creation statement f...

Solution to the problem that docker logs cannot be retrieved

When checking the service daily, when I went to l...

JavaScript to implement simple carousel chart most complete code analysis (ES5)

This article shares the specific code for JavaScr...

Detailed explanation of Vue.js directive custom instructions

Customize a demo command The syntax of Vue custom...

CSS to achieve horizontal lines on both sides of the middle text

1. The vertical-align property achieves the follo...

In-depth understanding of MySQL self-connection and join association

1. MySQL self-connection MySQL sometimes needs to...

XHTML Getting Started Tutorial: XHTML Web Page Image Application

<br />Adding pictures reasonably can make a ...

How to quickly query 10 million records in Mysql

Table of contents Normal paging query How to opti...

Nest.js hashing and encryption example detailed explanation

0x0 Introduction First of all, what is a hash alg...

Detailed explanation of the use of React.cloneElement

Table of contents The role of cloneElement Usage ...

Example of using Docker to build an ELK log system

The following installations all use the ~/ direct...