Home > Web Front-end > JS Tutorial > body text

A brief analysis of JS dynamically creating elements [two methods]_javascript skills

WBOY
Release: 2016-05-16 15:04:30
Original
1089 people have browsed it

Foreword:

There are two ways to create elements

1) Splice the elements that need to be created in the form of strings; find the parent element and directly assign a value to the innerHTML of the parent element.

2) Use some functions that come with Document and Element objects to dynamically create elements (create elements => find parent elements => insert elements at specified positions)

1. String concatenation form

For better understanding, set an application scenario.

Randomly generate a set of numbers, render this set of data into a bar chart, and place it in a div[id="container"], as shown below

  

<div id="container">
 </div>
 <script>
   window.onload = function () {
     var str='';
     for(var i=0; i<30 ;i++){
       var r = parseInt(Math.random()*100); //随机生成一个数字
       str += '<div>'+r+'</div>'; //拼接str
     }
     document.getElementById('container').innerHTML=str;
   }
 </script>
Copy after login

2. Use some functions that come with Document and Element objects

Also set an application scenario, as shown below

Get the information in the input and insert it to the left or right side of the red rectangle below according to the button on the right.

The solution is divided into three steps :

  1. Create element: Document.createElement()
  2. Find the parent element: You can use Id, name, tag name, class, and match the specified css selector
  3. Insert element at the specified position: element.appendChild(), element.insertBefore()                                                                                            
Implementation code:

<div id="div-input">
  <input type="text" id="txt_input" value="4"/>
  <input type="button" id="leftInsert" value="左侧入" />
  <input type="button" id="rightInsert" value="右侧入" />
</div>
<div id="container">
  <span>1</span>
  <span>2</span>
  <span>3</span>
</div>
 <script>
   window.onload = function () {
     var inputValue= document.getElementById('txt_input').value;
     document.getElementById('leftInsert').onclick=function(){
       //左侧入
       var span = document.createElement('span'); //1、创建元素
       span.innerHTML=inputValue;
       var container = document.getElementById('container'); //2、找到父级元素
        container.insertBefore(span,container.childNodes[0]);//插入到最左边
     }
     document.getElementById('rightInsert').onclick=function(){
       //右侧入
       var span = document.createElement('span'); //1、创建元素
       span.innerHTML=inputValue;
       var container = document.getElementById('container'); //2、找到父级元素
       container.appendChild(span); //3、在末尾中添加元素
     }
   }
 </script>
Copy after login
The above article briefly analyzes JS dynamic creation elements [two methods] is all the content shared by the editor. I hope it can give you a reference, and I hope you will support Script Home.
Related labels:
js
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!