$.query.get('code') 是什么意思?
$.query.get('code')
在 jQuery 中意味着什么?
What does $.query.get('code')
mean in jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
$.query.get('code')
在 jQuery 中意味着什么?
What does $.query.get('code')
mean in jQuery?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
$.query
是一个 jQuery 插件,用于读取查询字符串网址($_GET
变量)。如果 url 类似于
http://example.com?code=123
,则会获取code
的值。$.query
is a jQuery plugin to read the query string on a url (the$_GET
variables).This gets the value of
code
if the url was something likehttp://example.com?code=123
.这是 jQuery 查询字符串对象插件,它从查询中检索“代码”字符串(GET 变量)。
例如在页面上运行:“page.php?code=true”将返回“true”
This is the jQuery query string object plugin that is retrieving "code" from the query string (GET variable).
For example running on the page: "page.php?code=true" would return "true"