1

I have this in my header

<meta charset="utf-8">
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />

and this in my htaccess:

# UTF-8 encoding
# ----------------------------------------------------------------------

# Use UTF-8 encoding for anything served text/plain or text/html
AddDefaultCharset utf-8

# Force UTF-8 for a number of file formats
AddCharset utf-8 .css .js .xml .json .rss .atom

My browser is google chrome. When i use a javascript variable as output in the html a 'ä' becomes 'ä' ?

4

2 に答える 2

1

ファイルを含むタグに正しい文字セットを設定するか<script>、プレーン ASCII 範囲外のすべての記号を Unicode エンティティ (\xNNNN) としてエンコードして、ファイルを文字セット中立にする必要があります。Google Closure Compiler などの一部のミニファイヤは、これを行うことができます。

于 2012-05-31T13:20:22.317 に答える
1

文書も UTF-8 で保存しますか? Notepad++ を使用している場合は、ドキュメントのコーディングを変更し、サイトを保存して更新してみてください。

于 2012-05-31T13:19:27.810 に答える