Struts 2文本字段重音字符

时间:2017-08-25 09:29:22

标签: html jsp struts2

我在jsp中有这段代码

<%-- debugging pourpose --%>
<s:property value="%{dettaglio.titolo}"/>

<%-- input field --%>
<div class="form-group" id="form-titolo">
    <label class="col-sm-2 control-label no-padding-right"
        for="titoloLivello">* Titolo </label>
    <div class="col-sm-8">
        <s:textfield disabled="true"  id="titoloLivello" name="dettaglio.titolo"
            class="form-control col-xs-10 col-sm-12" value="%{dettaglio.titolo}" />
    </div>
</div>

And that's the output I get :(

任何人都知道为什么会这样?

在页面顶部,我有这个

    <!DOCTYPE html>
    <html lang="it">
        <head>

            <meta http-equiv="X-UA-Compatible" content="IE=edge" />
            <meta charset="UTF-8" />

...

1 个答案:

答案 0 :(得分:0)

Struts2 is automatically escaped by default

如果要在未自动转义的其他代码上使用,则必须在动作类中处理此转义。