使用 javascript 在 Html 页面上预防 XSS

发布于 2024-11-28 06:21:47 字数 65 浏览 0 评论 0原文

如何使用javascript(不是jsp页面)转义表单的文本框内容以避免xss。提交表单时必须在页面上正确重新渲染。

How to escape textbox contents of form using javascript(not jsp page) to avoid xss.It must be redered properly on page while submitting form.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦中的蝴蝶 2024-12-05 06:21:47

使用 document.appendChilddocument.createTextNode 等将文本插入文档,而不是使用接受原始 HTML 的属性(例如 innerHTML) 。

Insert the text into the document using document.appendChild, document.createTextNode and friends instead of a property (such as innerHTML) that accepts raw HTML.

ˉ厌 2024-12-05 06:21:47

“使用document.appendChild将文本插入到文档中,
document.createTextNode 和朋友而不是属性(例如
innerHTML) 接受原始 HTML。”

正如 Quentin 所说,或者使用现有的文本框,使用 value 属性:

textObject.value="value"

"Insert the text into the document using document.appendChild,
document.createTextNode and friends instead of a property (such as
innerHTML) that accepts raw HTML."

as Quentin says, or, using an existing textbox, use the value property:

textObject.value="value"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文