如何在url中传递参数?
从此处的问题提出的问题。 为了在浏览器中拥有搜索引擎,我需要找到一种方法来获取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.