获取从 javascript url 传递的参数
我只是想知道是否可以从使用传递值的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅在 .js 文件中调用 URL 参数
See Calling URL parameters within a .js file
不,不是从 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.