gpt4 book ai didi

javascript - 我如何使用 javascript 限制追加函数?

转载 作者:行者123 更新时间:2023-11-29 18:34:43 24 4
gpt4 key购买 nike

我有一个追加按钮,如果你无休止地点击它,它就会无休止地追加。假设我希望此按钮执行此操作 10 次。

让我用幻想代码告诉你 :p 我在想什么,这样我就可以从错误中吸取教训; (我知道这是错误的,但嘿我正在学习)

thismany = 1;

appendbutton.onClick = "thismany = +1";
if{ thismany = <9}

appendbutton.onClick = disabled

提前致谢

最佳答案

(function(){
var count = 1;
document.getElementById("the_node_id").onclick = function(){
if(count > 10){
return;
}
do_stuff();
count ++;
};
})()

更新:

var count = 1;
addEvent(append, "click", function(/* someargument */){
if(count > 10){
return;
}
// if you need arguments that are passed to the function,
// you can add them to the anonymous one and pass them
// to appendFunction
appendFunction(/* someargument */);
count++;
});

关于javascript - 我如何使用 javascript 限制追加函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4380415/

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