When href is needed to pass parameters, and the parameters are in Chinese, garbled characters will appear. The simplest method is: The passed value is first encrypted with escape() , and then decrypted with unescape() on the value access page. It has been tested and is effective. I checked online and found that urlencode can be used for encryption and urldecode can be used for decryption. Um... what is the difference between the two? I just checked and sorted it out, source (http://www.cnblogs.com/glory-jzx/archive/2013/06/14/3135580.html): js involves 3 functions to encode text : escape, encodeURI, encodeURIComponent, and 3 corresponding decoding functions: unescape, decodeURI, decodeURIComponent 1. When passing parameters, you need to use encodeURIComponent so that the combined URL will not be truncated by special characters such as #. >2. When redirecting URL, you can use encodeURI as a whole 5. The most commonly used one should be encodeURIComponent , which converts special characters such as Chinese and Korean into utf-8 URL encoding. Therefore, if you need to use encodeURIComponent to pass parameters to the background, the background decoding needs to support utf-8 (the encoding method in the form is the same as the encoding method of the current page) 6. No encoding: There are 69 escape characters: *, +, -, ., /, @, _, 0-9, az, AZ What is the difference between escape() and encodeURI()? escape() method: encodeURI() Method encodeURIComponent() method: [When is it appropriate to use which method?] I have only used escape, so this is for reference only. The above article about the Chinese garbled code problem in a href parameter passing is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. Original URL: http://www.cnblogs.com/zhangym118/archive/2016/07/05/5644915.html |
<<: Vue+Echart bar chart realizes epidemic data statistics
>>: HTML imitates Baidu Encyclopedia navigation drop-down menu function
Earlier we talked about how to make a square with...
This article lists some tips and codes about form...
When a company developer executes an insert state...
Most navigation bars are arranged horizontally as...
Nowadays, mobile devices are becoming more and mo...
Table of contents Overview CommonJS Specification...
This article shares the specific code for the WeC...
1. Download the virtual machine Official download...
Preface PC Server has developed to this day and h...
VNC is a remote desktop protocol. Follow the inst...
This article shares with you how to use canvas an...
I wonder if you are like me, a programmer who arr...
Table of contents Some basic configuration About ...
In an article a long time ago, I talked about the...
In order to download this database, it takes a lo...