Home  >  Article  >  Web Front-end  >  How to traverse the properties and values ​​of an object in js

How to traverse the properties and values ​​of an object in js

高洛峰
高洛峰Original
2017-01-14 11:14:39975browse

The examples are as follows:

var Statistics_Website_logo ={
             'Website_logo_title':'学而思',
             'Website_logo_Theme':'教育行业',
             'Website_logo_Company':'好未来'
   };
 
for (var Key in Statistics_Website_logo){
      Websitelogo =Websitelogo+'&'+''+Key+'='+Statistics_Website_logo[Key]+'';
    }

The above method of traversing the properties and values ​​of objects in js is all the content shared by the editor. I hope it can give you a reference. I also hope that everyone will support the PHP Chinese website.

For more articles related to methods of traversing the properties and values ​​of objects in js, please pay attention to the PHP Chinese website!

Statement:
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