gpt4 book ai didi

javascript - 纯JS "If stament depending the number of click"

转载 作者:行者123 更新时间:2023-11-28 13:41:03 25 4
gpt4 key购买 nike

我一直在寻找这个问题,但没有找到解决方案。我正在尝试创建一个代码,当您单击按钮时做一件事,而当您稍后按下同一按钮时做另一件事。我尝试创建“if-else”语句,但我无法(不知道)如何计算点击次数。

代码是:

<button type="submit" id="btnshwmap" onClick="init()" >Show Map</button>

还有 if-else :

function init() {
var click =0;
if (click === 0) {
do this
var click = 1;
} else {
do this
}
});//end click

基本上我正在尝试使用这个例子Jquery if its the first time element is being clicked

但答案是使用 Jquery,我尝试不使用任何库。

非常感谢!

最佳答案

问题在于,每次调用该函数时,您都会不断重置 click=0

我建议这样:

function init() {
if( !init.click) {
// first, third, fifth etc.
init.click = 1;
]
else {
// second, fourth...
init.click = 0;
}
}

关于javascript - 纯JS "If stament depending the number of click",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17799066/

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