gpt4 book ai didi

javascript - 如何在点击链接的同时调用链接所在页面的函数?

转载 作者:行者123 更新时间:2023-11-30 10:32:45 25 4
gpt4 key购买 nike

  • index.html - 有菜单 category1, category2, category3
  • product.html - 具有函数 changeIframe([category1 | category2 | category3]);

当我单击“index.html”页面上的菜单时,一个链接会将我带到“product.html”页面,然后立即调用函数 changeIframe(var)changeIframe(var)函数会比较$var(var的值后跟我点击的菜单名)然后改变内容在此页面中。我怎样才能做这样的事情?

最佳答案

只是一个想法,将类别作为 Url Hash 传递。

index.html:

<a href="product.html#category1">Category 1</a>
<a href="product.html#category2">Category 2</a>
<a href="product.html#category3">Category 3</a>

产品.html

var category = (location.hash).replace('#','');
changeIframe(category); //call function

如果您确实需要它,请使用 javascript。如果您使用服务器端脚本会更容易。

关于javascript - 如何在点击链接的同时调用链接所在页面的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15917205/

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