gpt4 book ai didi

javascript - 单击时更改按钮文本

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

所以,我学习了 www.code.org 的在线类(class)让自己适应 JavaScript。我使用了诸如 setProperty(); 之类的元素和onEvent(); 。我使用在线编辑器添加了一个按钮,并使用以下代码在用户单击按钮时更改按钮的文本:

onEvent("button1","click", function()
{
setProperty("button1","text","Hello there!");
});

我的问题是:如何使用 <button> 在 HTML 中执行此操作标签?

最佳答案

这很可能是等效的:将 click 事件监听器添加到按钮并通过 texContent 更改回调函数体内的文本。

document.getElementById('button1').addEventListener('click', function() {
this.textContent = 'Hello there!';
});
<button id="button1">Click Me</button>

关于javascript - 单击时更改按钮文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47700694/

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