gpt4 book ai didi

循环内的javascript AttachEvent

转载 作者:行者123 更新时间:2023-11-28 10:14:27 24 4
gpt4 key购买 nike

我在循环中使用下面的代码。只要我不使用 IE,它就可以工作。

var remove = document.createElement("input");
remove.type = "button";
remove.value = "x";
if (remove.addEventListener) {
remove.addEventListener("click", (function(item_id) { return function() { remove_from_cart(item_id); } })(item_id), false);
} else {
remove.attachEvent("click", (function(item_id) { return function() { remove_from_cart(item_id); } })(item_id));
}

最佳答案

IE 在描述事件时需要 on,所以这就是您所需要的。

remove.attachEvent("onclick", (function(item_id) { return function() { remove_from_cart(item_id); } })(item_id));
}

关于循环内的javascript AttachEvent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6886809/

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