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
Multi-way search tree Height of a complete binary...
Preface: Use watermark effect in vue project, you...
CentOS8 was released a few days ago. Although it ...
Table of contents 1. MHA 1. Concept 2. Compositio...
1. Error reproduction I can access the MySQL data...
I re-read the source code of the Fabric project a...
Recently, when I was using the Linux operating sy...
load Request Success Request failed Click cmd and...
Table of contents Overview 1. Compositon API 1. W...
Table of contents Parsers and preprocessors Query...
For more information about operating elements, pl...
Problem: The partition where MySQL stores data fi...
Specific method: (Recommended tutorial: MySQL dat...
Q: Whether using Outlook or IE, when you right-cl...
Table of contents Event Loop miscroTask (microtas...