根据选择的链接更改 url (HTML) 无 asp

发布于 2024-08-31 02:03:24 字数 1026 浏览 4 评论 0原文

TLDR 我需要在单击链接(可以来自不同页面)后更改同一页面上的 JavaScript 变量,以便 getjson 请求提取不同的数据,而不必在 html 页面上重复。


我正在使用 Jquery 的一些 getJSON 请求来进行调用以填充我的页面。 我希望能够(在纯 HTML / javascript 中)当用户单击“链接 1”或“链接 2”打开同一页面(例如 page.html)但将获取请求 url 更改为“链接 1”或“链接2”。

Page.html

var url = ??;    
$.getJSON(url, function(data){}

link 1

var url = host/link1
<a href="page.html">link1</a>

link2

var url = host/link2
<a href="page.html">link2</a>

所以我调用同一个页面,但能够用不同的内容填充它。 故意远离asp。正在考虑在页面加载后将内容插入到 div 中,以便可以设置 url 或类似的内容。

Edit1 我还需要在“page.html”加载后重做 getjson 请求并每秒重新运行它。我已经对其他页面执行了此操作,但在我需要根据自动生成的链接提取数据的情况下却没有这样做。

Edit2 决定采用使用 jquery 和 jquery cookie 的 Cookie 方法,因为它看起来最合理。请参阅线程此处

我有什么想法可以解决这个问题吗?

TLDR I need to change a javascript variable on the same page after clicking a link (can be from a different page) so that the getjson request pulls different data without having to duplicate on html pages.


I am using some getJSON requests with Jquery, to make calls to populate my pages.
I want to be able to (in plain HTML / javascript) when the user clicks say "link 1" or "link 2" to open the same page (say page.html) but change the get request url to "link 1" or "link 2".

Page.html

var url = ??;    
$.getJSON(url, function(data){}

link 1

var url = host/link1
<a href="page.html">link1</a>

link2

var url = host/link2
<a href="page.html">link2</a>

So I call the same page but am able to populate it with different content.
Purposely staying away from asp. Was thinking maybe of inserting the content into a div after page load so the url can be set or something along those lines.

Edit1 I also need to redo the getjson request after "page.html" loads and re run it every second. I have done this with other pages but not in the case where I need to pull on data depending on a link that is automatically generated.

Edit2 Decided to go with the Cookie approach using jquery and jquery cookie as it seemed most reasonable. See thread here

Any ideas how I might go about this?

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

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

发布评论

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

评论(1

∝单色的世界 2024-09-07 02:03:24
$('a[href=page.html]').click(function()
{
  $.getJSON('host/' + $(this).text(), function(data){});
  return false;
});
$('a[href=page.html]').click(function()
{
  $.getJSON('host/' + $(this).text(), function(data){});
  return false;
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文