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

Detailed introduction to one of the methods of obtaining URL parameters in JavaScript

黄舟
Release: 2017-03-24 14:50:42
Original
1532 people have browsed it

This article mainly introduces the JavaScript method of obtaining URL parameters. Has very good reference value. Let’s take a look with the editor

If the address bar URL is: abc.html?m=tomms&c=allsearchlist&pageNo=1&pageNum=20&text=1

<script>
  //Javascript获取url,并把url中的参数变成数组的方法,arr数组的值就是各参数值
  var url = window.document.location.href.toString();
  var u = url.split("?");
  var arr = [];
  if(typeof(u[1]) == "string"){
    u = u[1].split("&");
    for(var i in u){
      var a = (u[i].split("="));
      arr[a[0]] = a[1];
    }
  }
</script>
Copy after login

Note: When the URL contains Chinese characters, the Chinese parameters will be garbled!

The above is the detailed content of Detailed introduction to one of the methods of obtaining URL parameters in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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!