获取从 javascript url 传递的参数

发布于 2024-11-14 21:26:00 字数 157 浏览 2 评论 0原文

我只是想知道是否可以从使用传递值的 js 调用中检索参数,如下所示

myfile.js?my_parm=brol

我的目标是从我的“myfile.js”中检索 my_param

提前致谢

i just want to know if its possible to retrrive param from js calling with passed values like this

myfile.js?my_parm=brol

My goal is to retrieve the my_param value from within my "myfile.js"

Thanks in advance

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

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

发布评论

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

评论(2

话少心凉 2024-11-21 21:26:00

不,不是从 JavaScript 内部,访问 JavaScript 中的查询字符串参数的唯一方法是通过文档或位置对象。这些仅当脚本在浏览器中执行时才可用。

如果您尝试使用模板语言(如 php 或 python)访问它,您当然可以捕获查询字符串参数并将信息注入 JavaScript 代码中。

No, not from within the JavaScript, the only way to access query string parameters in JavaScript is through the document or location objects. Those are only available when the script is executed within the browser.

If you are trying to access it using a templating language (like php or python) you could of course capture the querystring argument and inject information into the JavaScript code with that.

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