在 JavaScript 中获取 htaccess URL 参数
Javascript 有什么方法可以通过 htaccess 获取修改后的 URL 参数吗? 举个例子:www.website.com/argument/1/argument/2 其中“/argument/2”= &product_id=2 JavaScript 有什么方法可以获取这些参数吗?
Is there any way in Javascript to get the parameters ume modified URL with htaccess?
As an example: www.website.com/argument/1/argument/2
Where "/argument/2" = &product_id=2
There is some way to pick up these parameters in JavaScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需将地图打印为 JSON 即可导出这些属性。我将用 PHP 来展示这一点。
然后您可以通过
GET['product_id']
访问这些值。You can export these properties by simply printing the map as JSON. I'm going to show this in PHP.
Then you can access the values as
GET['product_id']
.