gpt4 book ai didi

javascript - 为某些元素设置相同事件的简单方法

转载 作者:行者123 更新时间:2023-11-28 01:35:56 25 4
gpt4 key购买 nike

请给我一个想法。这种情况我该怎么办。

var buttons = document.getElementsByName("buttons"); //get four buttons

buttons[0].onclick = alert("hoge");
buttons[2].onclick = alert("hoge");

buttons[1].onclick = alert("fuga");
buttons[3].onclick = alert("fuga");

最佳答案

就像任何其他作业一样:

a = b = c = d = e = f = "letters!";

适用于您的情况:

buttons[0].onclick = buttons[2].onclick = function() {alert("hoge");};

关于javascript - 为某些元素设置相同事件的简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21540863/

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