从位置获取值

发布于 2024-09-13 12:35:19 字数 257 浏览 5 评论 0原文

我需要从页面地址的搜索查询中获取搜索查询。

什么是最安全的跨浏览器和最有效的获取字符串的方法。例如:

q=123&data=true&b=456
//from
http://www.example.com/?q=123&data=true&b=456

location.search 在所有现代浏览器(IE7+、FF、webkit、opera)上都可用吗?

I need to get the search query from the search query of the address of the page.

What is the safest cross-browser, and most efficient method of getting the string. for example:

q=123&data=true&b=456
//from
http://www.example.com/?q=123&data=true&b=456

And is location.search available on all modern browsers (IE7+, FF, webkit, opera)?

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

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

发布评论

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

评论(2

仄言 2024-09-20 12:35:19

是的,location.search 是正确的选择。

在 JS 1.0 中引入,受 IE 3.0、Netscape 2、Opera 5.12、FF1.0、Konqueror 3.1 和 Safari 1.0 支持。

我想考虑到其他浏览器长期以来都支持它,Chrome 总是支持它。

Yes, location.search is the way to go.

Introduced in JS 1.0, supported by IE 3.0, Netscape 2, Opera 5.12, FF1.0, Konqueror 3.1 and Safari 1.0.

And I guess it is always supported in Chrome considering that the other browsers support it since ages.

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