gpt4 book ai didi

jquery - 使用 Jquery 将查询字符串附加到 URL

转载 作者:行者123 更新时间:2023-12-03 22:58:43 26 4
gpt4 key购买 nike

我做错了什么?

  1. 仅在 URL 位置为“/MyWebsite/Example.aspx”的页面上附加“?template=PW”
  2. 但仅限于包含“/HelloWorld/default.aspx”的链接

没有与此链接关联的 ID 或类,因此我必须查找 URL。

这是我的代码,但链接没有更新..我知道我已经接近了!

$(document).ready(function(){
if (document.location.href.indexOf('/MyWebsite/Example.aspx') > 0)
{
$('a[href*="/HelloWorld/default.aspx"]').append("href",$("?template=PW"))
}
});

最佳答案

$(document).ready(function(){
if (document.location.href.indexOf('/MyWebsite/Example.aspx') > 0)
{
var $el = $('a[href*="/HelloWorld/default.aspx"]');
$el.attr("href", $el.attr("href")+ "?template=PW");
}
});

关于jquery - 使用 Jquery 将查询字符串附加到 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16408692/

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