查询字符串和片段之间的区别?

发布于 2024-08-15 16:53:07 字数 74 浏览 3 评论 0原文

当使用 jQuery BBQ 时,他们使用“querystring”和“fragment”这两个词。

两者有什么区别?

When using jQuery BBQ they are using the words "querystring" and "fragment".

What is the difference btween the two?

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

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

发布评论

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

评论(1

冷…雨湿花 2024-08-22 16:53:07

在 URL 的定义中(参见此处):

片段 URL

URL 规范位于
本文档的编写([RFC1738])
提供了一种机制来引用
资源,但不位于其中的某个位置
一种资源。网络社区有
通过了一项名为“片段
URLs”来引用一个锚点
HTML 文档。片段 URL 结束
“#”后跟一个锚点
标识符。例如,这里有一个
指向锚点的片段 URL
命名为section_2:

http://somesite.com/html/top.html#section_2< /p>

#section_2 部分也称为“片段”。它的解释取决于用户代理(也称为客户端,又称为浏览器),尽管通用约定是它是要求浏览器将其自身定位到的 标记的锚点。

查询字符串,如此处所述,是传递到服务器端的 URL 的一部分程序 - 通常在 ? 之后,直到但不包括 #(如果有)。因此,在:

http://server/path/program?query_string#thefrag

查询字符串将为 query_string,片段将为 thefrag

In the definition of a URL (see e.g. here):

Fragment URLs

The URL specification en vigeur at the
writing of this document ([RFC1738])
offers a mechanism to refer to a
resource, but not to a location within
a resource. The Web community has
adopted a convention called "fragment
URLs" to refer to anchors within an
HTML document. A fragment URL ends
with "#" followed by an anchor
identifier. For instance, here is a
fragment URL pointing to an anchor
named section_2:

http://somesite.com/html/top.html#section_2

The #section_2 part is also called "the fragment". Its interpretation is up to the user agent (AKA client AKA browser), though the universal convention is that it's the anchor of an <a> tag to which the browser is asked to position itself.

The Query String, as explained here, is the part of the URL that's passed to the server-side program -- normally after a ? and up to but excluding the # if any. So, in:

http://server/path/program?query_string#thefrag

the query string would be query_string and the fragment would be thefrag.

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