urlencode 发送表单

发布于 2024-11-05 09:58:22 字数 242 浏览 0 评论 0原文

我有一个简单的搜索表单,

<form id="search" name="search" method="GET" action="search.php" enctype="application/x-www-form-urlencoded">

但是此表单不会对 URL 中的所有字符进行编码,' 不会编码为 %27,这不应该自动完成吗?

I have a simple search form

<form id="search" name="search" method="GET" action="search.php" enctype="application/x-www-form-urlencoded">

But this form doesn't encode all chars in a URL, ' isn't encoded to %27, shouldn't this be done automatically?

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

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

发布评论

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

评论(1

鼻尖触碰 2024-11-12 09:58:22

这很有趣。在 HTML 规范中,它规定所有非字母数字字符均由 %HH 表示(根据 RFC 1738,第 2.2 节)。但如果你真的去查看 RFC1738,第 2.2 节有以下内容:

因此,只有字母数字,特殊的
字符“$-_.+!*'(),”和
用于它们的保留字符
可以使用保留的目的
URL 中未编码

但 Chrome 似乎严格遵循了该规范,而 IE 和 Firefox 选择不对这些字符进行编码。

This is rather funny.. On the HTML specification it states that all Non-alphanumeric characters are represented by %HH (according to RFC 1738, Section 2.2). But if you actually go to the RFC1738, Section 2.2 has the following:

Thus, only alphanumerics, the special
characters "$-_.+!*'(),", and
reserved characters used for their
reserved purposes may be used
unencoded within a URL.

But Chrome seems to follow the specification to the letter, where as IE and Firefox choose to not encode those characters..

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