gpt4 book ai didi

javascript - 如何使用 JavaScript 检查按钮是否被点击

转载 作者:行者123 更新时间:2023-12-01 11:24:53 24 4
gpt4 key购买 nike

有没有一种简单的方法可以按照这些方式做一些事情:

JavaScript:

if(document.getElementById('button').clicked == true)
{
alert("button was clicked");
}

HTML:
<input id="button" type="submit" name="button" value="enter"/>

最佳答案

您可以为此添加单击事件处理程序:

document.getElementById('button').onclick = function() {
alert("button was clicked");
}​;​

这将在单击时发出警报,如果您想稍后跟踪它,只需在该函数中将变量设置为 true 而不是警报,或 variable++如果您想计算点击次数,无论您的最终用途是什么。 You can see an example here .

关于javascript - 如何使用 JavaScript 检查按钮是否被点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2788191/

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