What to do if jquery url is Chinese garbled

藏色散人
Release: 2021-01-28 10:33:45
Original
2095 people have browsed it

The solution to the Chinese garbled jquery url: first get the parameters in the url; then construct a regular expression object containing the target parameters; then match the target parameters; and finally return the parameter value.

What to do if jquery url is Chinese garbled

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

Recommended:jquery video tutorial

Jquery gets the parameters in the URL and solves the problem of Chinese garbled parameters.

Method 1:

//获取url中的参数 function getUrlParamCN(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); //构造一个含有目标参数的正则表达式对象 var r = decodeURI(window.location.search).substr(1).match(reg); //匹配目标参数 if (r != null) return unescape(r[2]); return null; //返回参数值 }
Copy after login

Method 2:

1. Pass parameter page.html

Copy after login

2. Receive parameter page.html

(Final page address: ../aa.html?name=abc&num=998&cla=%E7%94%B5%E8%84%91)

Copy after login

The above is the detailed content of What to do if jquery url is Chinese garbled. 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 Recommendations
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!