我有一个html屏幕,其中包含中文字符:
<td class="bck_form_big" title="<?php print $orig_translator_title[PACKING_ERRORS]; ?>"> <?php print $translator_title[PACKING_ERRORS]; ?></td>
<td class="bck_form_big"> <input class="textstyle" size="35" id="fault_1" name="fault_1" value="Case Contents / 码数对照" ></td>
<td class="bck_form_big">
<input type="text" class="textstyle" size="5" id="classification_1_CR" name="classification_1_CR" value="" onChange="calc_faults('<?php print $linha_config->layout_format; ?>');"/> <?php print $translator_title[FLDCR]; ?>
<input type="text" class="textstyle" size="5" id="classification_1_MJ" name="classification_1_MJ" value="" onChange="calc_faults('<?php print $linha_config->layout_format; ?>');"/> <?php print $translator_title[FLDMJ]; ?>
<input type="text" class="textstyle" size="5" id="classification_1_MN" name="classification_1_MN" value="" onChange="calc_faults('<?php print $linha_config->layout_format; ?>');"/> <?php print $translator_title[FLDMN]; ?>
</td>
<td class="bck_form_big"> <input type="text" class="textstyle" size="10" id="cap_1" name="cap_1" value="" onBlur="faults_code_description(this);"></td>
如您所见,我有中文字符显示在屏幕上。 首先,当我打开字符显示确定,但稍后当我刷新页面时,它们就变成了符号。
正如你在图片中看到的那样:
when I open the page for the first time
有谁知道发生了什么事?
由于
答案 0 :(得分:0)
在<meta charset="utf-8">
部分中添加<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
或<head>
。