我想要一种从 url 获取单个锚变量,然后附加特定
内的所有链接的方法。与锚变量

发布于 2025-01-07 00:48:00 字数 541 浏览 1 评论 0原文

我想要一种从 url 获取单个锚变量,然后使用锚变量附加特定内的所有链接的方法。

即获取变量的当前网址: http://www.bestforbusiness.com#a_aid=affname& a_bid=34837e17

div中当前链接用于替换: 澳大利亚

结果应该是: Australia

我不介意它是用 javascript 还是 Jquery 完成的需要一些帮助将它们拼接在一起,因为我在 javascript 方面是一个菜鸟。

希望这足够清楚,预先感谢

I would like a way to get individual anchor vars from a url and then apend all links within a specific with the anchor vars.

i.e. Current url for get vars: http://www.bestforbusiness.com#a_aid=affname&a_bid=34837e17

current links in div for replacement:
<a href="http://australia.bestforbusiness.com">Australia</a>

The result whould be:
<a href="http://australia.bestforbusiness.com#a_aid=affname&a_bid=34837e17">Australia</a>

I dont mind if it is done with javascript or Jquery just need some help stiching it all together as i am a noob when it comes to javascript.

Hope this is clear enough, thanks in advance

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

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

发布评论

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

评论(2

川水往事 2025-01-14 00:48:00

试试这个:

$(document).ready(function(){
    var anchor_vars = document.location.hash;
    $("#target_div a").each(function(idx, item) { // REPLACE target_div with proper id
        $(item).attr('href', $(item).attr('href') + anchor_vars);
    });
});

Try this:

$(document).ready(function(){
    var anchor_vars = document.location.hash;
    $("#target_div a").each(function(idx, item) { // REPLACE target_div with proper id
        $(item).attr('href', $(item).attr('href') + anchor_vars);
    });
});
许你一世情深 2025-01-14 00:48:00

使用 Jquery

var customAnchorVars="#a_aid=affname&a_bid=34837e17";
$("div a").each(function()
{
  $(this).attr("href",$(this).attr("href")+customAnchorVars);

})

Using Jquery

var customAnchorVars="#a_aid=affname&a_bid=34837e17";
$("div a").each(function()
{
  $(this).attr("href",$(this).attr("href")+customAnchorVars);

})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文