gpt4 book ai didi

javascript - 我的 JS 函数不会 "alert"按键

转载 作者:行者123 更新时间:2023-11-30 10:18:43 26 4
gpt4 key购买 nike

我有这段代码,它似乎没有提醒我按下某个键(这应该在我单击“开始”后发生)。为什么不呢? :/

function dynamic_buttons() {
var start_button = document.getElementById('start');
var stop_button = document.getElementById('stop');
start_button.onclick = log_keypress;
stop_button.onclick = log_keypress;
}

function log_keypress() {
alert('click event happened');
}

这是“完整的” fiddle :code

最佳答案

您需要调用dynamic_buttons函数来绑定(bind)事件。

更新的 fiddle

http://fiddle.jshell.net/dQR6j/5/

function dynamic_buttons() {
var start_button = document.getElementById('start');
var stop_button = document.getElementById('stop');
start_button.onclick = log_keypress;
stop_button.onclick = log_keypress;
}

function log_keypress() {
alert('click event happened');
}

dynamic_buttons(); // <--- this is important

关于javascript - 我的 JS 函数不会 "alert"按键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22474747/

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