gpt4 book ai didi

javascript - 在发送请求之前编辑 href 链接

转载 作者:技术小花猫 更新时间:2023-10-29 12:30:16 26 4
gpt4 key购买 nike

我有this代码:

<a class="myLink" href='http://www.website.it/'>Link</a>

<script type="text/javascript">
var stringToSend = "";
$('.myLink').click(function() {
stringToSend="?param=1";
});
</script>

而且,如您所见,我想将 stringToSend 添加到 href(因此请求将位于 http://www.website.it/?param=1 )。

我该怎么做?

最佳答案

只需用新的 href 修改 href 即可。

$('.myLink').click(function() {
$(this).attr("href", this.href + "?param=1");
});

关于javascript - 在发送请求之前编辑 href 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7159207/

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