如何在url中传递参数?

发布于 2024-07-25 18:00:25 字数 240 浏览 6 评论 0原文

此处的问题提出的问题。 为了在浏览器中拥有搜索引擎,我需要找到一种方法来获取 url 的参数。

假设您有 Google 协作平台,其中有 Google Gadget。 该小工具有一个搜索框。

如何为搜索框提供搜索参数?

The question raised from the question here. In order to have search engines in Browser, I need to find a way to get the parameters to url.

Suppose you have Google Sites where you have Google Gadget. The gadget has a search box.

How can you give the search parameters to the search box?

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

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

发布评论

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

评论(1

故事还在继续 2024-08-01 18:00:25

HTML 4.01 规范对此进行了描述: http:// /www.w3.org/TR/html4/interact/forms.html#h-17.13.3

本质上是附加一个“?” 到 URI,然后创建 key=value 对集,其中包含由转义序列表示的特殊字符。 然后将这些对附加到 URL,并用“&”号或分号分隔每对。

This is described in the HTML 4.01 specification: http://www.w3.org/TR/html4/interact/forms.html#h-17.13.3

Essentially you append a "?" to the URI, then create sets of key=value pairs which have special characters represented by escape sequences. Then append the pairs to the URL, separating each pair with an ampersand or semi-colon.

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