Home > Web Front-end > JS Tutorial > What to do if jquery gets garbled parameters from url

What to do if jquery gets garbled parameters from url

coldplay.xixi
Release: 2023-01-04 09:37:56
Original
2599 people have browsed it

The solution for jquery to obtain garbled url parameters: 1. Use regular analysis method, the code is [function getQueryString(name)]; 2. Get the string after the [?] character in the url, the code is [ var url = location.search;].

What to do if jquery gets garbled parameters from url

The operating environment of this tutorial: windows7 system, jquery1.12 version, DELL G3 computer.

Recommendation: jquery video tutorial

Solution to jquery getting url parameter garbled:

Method 1 : Regular analysis method

The code is as follows:

function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]); return null;
}
Copy after login

Called like this:

The code is as follows:

alert(GetQueryString("参数名1"));
alert(GetQueryString("参数名2"));
alert(GetQueryString("参数名3"));
Copy after login

Method 2:

The code is as follows:

<span style="font-size: 16px;"><Script language="javascript">
function GetRequest() {
var url = location.search; //获取url中"?"符后的字串
var theRequest = new Object();
if (url.indexOf("?") != -1) {
var str = url.substr(1);
strs = str.split("&");
for(var i = 0; i < strs.length; i ++) {
theRequest[strs[i].split("=")[0]]=unescape(strs[i].split("=")[1]);
}
}
return theRequest;
}
</Script></span>
Copy after login

1. Call like this:

The code is as follows:

<Script language="javascript">
var Request = new Object();
Request = GetRequest();
var 参数1,参数2,参数3,参数N;
参数1 = Request[&#39;参数1&#39;];
参数2 = Request[&#39;参数2&#39;];
参数3 = Request[&#39;参数3&#39;];
参数N = Request[&#39;参数N&#39;];
</Script>
Copy after login

If the parameters contain Chinese characters, pay attention to the encoding and decoding :

The code is as follows:

<span style="font-size:18px;">1.传参页面
Javascript代码:<script type=”text/javascript”>
function send(){
var url = "test01.html";
var userName = $("#userName").html();
window.open(encodeURI(url + "?userName=" + userName)); }
</script>
Copy after login

2. Receive parameter page: test02.html

<script>
var urlinfo = window.location.href;//获取url
var userName = urlinfo.split(“?”)[1].split(“=”)[1];//拆分url得到”=”后面的参数
$(“#userName”).html(decodeURI(userName));
</script></span>
Copy after login

Related free learning recommendations: javascript (video )

The above is the detailed content of What to do if jquery gets garbled parameters from url. 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