Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 html 表单,其中我有这个输入:
<input type="text" id="description" name="description" value="${messageDetails.description}" maxlength="500" />
如果我以这种形式提交代码:x < y它只会显示,忽略x字符后的内容。<你能帮我么?
x < y
x
<
您可能需要使用特殊字符,而不是破坏您的 HTML。
在您的情况下x<y应替换为x < y
x<y
x < y
发生这种情况,因为<在 HTML 源代码中用于标记。
编辑
如果您想在 .jsp 页面之间替换它们,请按照本教程进行操作。