从 iframe 中获取 iframe 的 URL 参数

Getting the iframe's URL parameter from within the iframe

我在网页上加载了一个 iframe,但我没有访问父页面的权限。我可以访问 iframe 的代码。我想访问此 iframe 的参数之一。实现此目标的最佳方法是什么?

我试过 location.search 但它没有给我所有的参数。

有什么建议吗? 干杯。

我自己找到了答案,我们可以使用以下代码检索 iframe 的 URL:

document.location.href

这似乎工作正常,没有任何问题。