gpt4 book ai didi

javascript - 如何在javascript中更改href函数的参数值

转载 作者:行者123 更新时间:2023-11-30 15:09:53 25 4
gpt4 key购买 nike

有一个函数工具有两个参数。我必须更改参数 a(1 到 2)和 b(2 到 3)的值。我怎样才能改变这个?请给出您宝贵的答案。

<html>
<head>
<script>

function tool(a,b) {
}
</script> </head>
<body>
<a href="javascript:tool(1,2)" name ="link" title="before click">click here</a>
</body>
</html>

最佳答案

您可以更新 anchor 节点的 href 属性。

function tool(a, b) {
console.log(a, b);
}
document.getElementById('link').href='javascript:tool(2, 3);';
<a href="javascript:tool(1, 2)" id="link" title="before click">click here</a>

关于javascript - 如何在javascript中更改href函数的参数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45263066/

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