查询字符串和片段之间的区别?
当使用 jQuery BBQ 时,他们使用“querystring”和“fragment”这两个词。
两者有什么区别?
When using jQuery BBQ they are using the words "querystring" and "fragment".
What is the difference btween the two?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 URL 的定义中(参见此处):
#section_2
部分也称为“片段”。它的解释取决于用户代理(也称为客户端,又称为浏览器),尽管通用约定是它是要求浏览器将其自身定位到的标记的锚点。
查询字符串,如此处所述,是传递到服务器端的 URL 的一部分程序 - 通常在
?
之后,直到但不包括#
(如果有)。因此,在:查询字符串将为
query_string
,片段将为thefrag
。In the definition of a URL (see e.g. here):
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:the query string would be
query_string
and the fragment would bethefrag
.