gpt4 book ai didi

javascript - 有哪些选项可将 URL 参数传递到 JavaScript 应用程序

转载 作者:行者123 更新时间:2023-12-03 08:38:55 25 4
gpt4 key购买 nike

我想以以下格式公开我的网络应用程序中用户个人资料的 URL:

example.com/user/<userId>

这应该加载文件user.html其中包含 JavaScript (ajax) 代码,用于根据请求加载内容 userId .

我必须获得哪些选项userId参数从 URL 传入我的 user.html文件?

我能想到的方法是使用PHP之类的服务器端语言来嵌入userId在 HTML/JavaScript 中。想看看是否还有其他更好的选择。

最佳答案

你可以这样做:

var parser = document.createElement('a');
parser.href = "http://example.com:3000/pathname/?search=test#hash";
parser.protocol; // => "http:"
parser.hostname; // => "example.com"
parser.port; // => "3000"
parser.pathname; // => "/pathname/"
parser.search; // => "?search=test"
parser.hash; // => "#hash"
parser.host; // => "example.com:3000"

更多

http://www.sitepoint.com/url-parsing-isomorphic-javascript/

关于javascript - 有哪些选项可将 URL 参数传递到 JavaScript 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33113487/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com