gpt4 book ai didi

javascript - 如何在 JavaScript 中动态创建事件和事件处理程序

转载 作者:行者123 更新时间:2023-12-02 18:25:15 25 4
gpt4 key购买 nike

我正在尝试使用 for 循环使用唯一的监听器和处理程序动态创建按钮,但不幸的是我一定做错了什么,因为只有最后一个按钮有效。更令人惊讶的是,当单击最后一个按钮而不是“Button No.3”时,它返回“Button No.4”

波纹管是代码,这里是一个jsfiddle http://jsfiddle.net/y69JC/4/

HTML:

<body>
<div id="ui">
some text ...
</div>
</body>

Javascript:

var uiDiv = document.getElementById('ui');
uiDiv.innerHTML = uiDiv.innerHTML + '<br>';

var results = ["Button one","Button two","Button three","Button four"];

for(var n=0;n<results.length;n++)
{
uiDiv.innerHTML = uiDiv.innerHTML + '<button id="connect'+n+'">option'+n+':'+results[n]+'</button><br>';
var tempId = document.getElementById('connect'+n);
tempId.addEventListener('click', function(){console.log("Button No."+n)}, false);
}

谢谢!

最佳答案

当您需要关闭时,这是一个经典案例:更改为:

var uiDiv = document.getElementById('ui');
uiDiv.innerHTML = uiDiv.innerHTML + '<br>';

var results = ["Button one", "Button two", "Button three", "Button four"];

for (var n = 0; n < results.length; n++) {
// Note: do not use .innerHTML. Create new element programatically
// and then use .appendChild() to add it to the parent.
var button = document.createElement('button');
button.id = 'connect' + n;
button.textContent = 'option' + n + ':' + results[n];

uiDiv.appendChild(button);

button.addEventListener('click', /* this is an inline function */ (function (n2) {
// Here we'll use n2, which is equal to the current n value.
// Value of n2 will not change for this block, because functions
// in JS do create new scope.

// Return the actual 'click' handler.
return function () {
console.log("Button No." + n2)
};
})(n)); // Invoke it immediately with the current n value
}

原因是 for 循环不会创建作用域,因此 "Button No. "+ n 始终使用 n< 进行计算 等于 results 数组中的元素数量。

需要做的是创建一个接受n作为参数的内联函数,并使用n的当前值立即调用它。然后,该函数将返回单击事件的实际处理程序。请参阅this回答一个很好又简单的例子。

编辑:您的代码正在使用 innerHTML 属性在循环中添加新按钮。它已被破坏,因为每次使用 uiDiv.innerHTML = ... 进行分配时,您都会删除此 div 中先前存在的所有内容并从头开始重新创建它们。这导致先前附加的所有事件处理程序被删除。从原理上讲,它看起来像这样:

uiDiv.innerHTML = ""

// First iteration of for-loop
uiDiv.innerHTML === <button1 onclick="...">

// Second iteration of for-loop
// 'onclick' handler from button1 disappeared
uiDiv.innerHTML === <button1> <button2 onclick="...">

// Third iteration of for-loop
// 'onclick' handler from button2 disappeared
uiDiv.innerHTML === <button1> <button2> <button3 onclick="...">

关于javascript - 如何在 JavaScript 中动态创建事件和事件处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18448284/

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