
How to solve phpcms js garbled code
Solution:
Method 1:
phpcmd loads js with garbled characters because the encoding is not unified. What is the reason? It is because if you do not declare the encoding format of js when loading js, then the browser will default to the current encoding format. The html encoding format is used to parse the imported js files. If your js is encoded differently from the page itself, and Chinese characters are introduced into the js, garbled characters will definitely appear.
Method 2:
Add the charset attribute to the tag that imports js
Introduced in this way, then the xx.js will be parsed according to the encoding of the own page, and if The encodings of the two are different. If this js is the encoding of gbk, then we can write like this
<script src="../../lib/Plugins/datepicker_lang_zh_CN.js" charset="utf-8" type="text/javascript"></script>
Then, as long as you make sure that the js file is indeed utf-8 or the corresponding encoding, you write it yourself, Then no matter which encoding page is used to reference this js, there will be no encoding problems. This is the most standardized way to write. The first method will cause a situation, that is, in rare cases, due to some irregularities The reason is that we will find that even when the encoding is unified, garbled characters will appear, so it is best for us to write in the second way.
Recommended tutorial: phpcms tutorial
The above is the detailed content of How to solve phpcms js garbled code. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor





