提交后输入字段未正确显示拉丁字符

时间:2019-05-30 12:29:20

标签: html jsp input encoding

我遇到拉丁字符的问题。当我单击表单的onSubmit()方法时,它们在输入中无法正确显示:

单击onSubmit()后的预期结果:

enter image description here

但是提交后我得到了:

enter image description here

在我的JSP文件中,我使用的是UTF-8编码:

<%@ page language="java" contentType="text/html; charset=utf-8"
         pageEncoding="utf-8"%>

我的表单的示例代码:

<form:form action="#" method="post">
     <table border="0" width="100%" >
     <tr>
            <td> <span  style="color:black;font-size: 15px;">Subject:</span><span style="color: red"> *</span></td>
            <td><input id="mailSubject" type="text" name="mailSubject" size="65" placeholder="Temat" class="form-control" value="${param.mailSubject}" /></td>
       </tr>
    </table>
</form:form>

当我键入错误的数据时,当然会显示此问题-然后我将返回表单页面并显示验证输入。

0 个答案:

没有答案