gpt4 book ai didi

javascript - 将 onclick 更改为以变量作为参数的函数

转载 作者:行者123 更新时间:2023-12-02 17:42:02 26 4
gpt4 key购买 nike

所以这是我正在做的事情的简化版本。我想更改跨度的 onclick 以调用以变量作为参数的函数。我希望它使用创建新 onclick 时存在的变量,而不是单击时的变量。

<html>
<head>
<script>
function share(it) {
alert("We wanted 1, we got "+ it);
}
</script>
</head>
<body>
<span id="key">Click me</span>

<script>
var x = 1;
document.getElementById('key').onclick = function() {share(x)}
x++;
</script>

</body>
</htmL>

最佳答案

不要直接使用 function(),使用创建 onclick 函数的函数:

<html>
<head>
<script>
function share(it) {
alert("We wanted 1, we got "+ it);
}

function makeFunction(x) {
return function() {share(x);}
}

</script>
</head>
<body>
<span id="key">Click me</span>

<script>
var x = 1;
document.getElementById('key').onclick = makeFunction(x)
x++;
</script>

</body>
</html>

关于javascript - 将 onclick 更改为以变量作为参数的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22122392/

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