gpt4 book ai didi

javascript - 防止点击标签触发子按钮

转载 作者:行者123 更新时间:2023-12-04 14:44:34 25 4
gpt4 key购买 nike

当这样设置时,点击带有子按钮的标签会触发按钮的 onclick 事件:

function fireButton() {
console.log("Button fired!");
}
<label>Label
<button onclick="fireButton()">Button</button>
</label>

有没有办法防止这种情况发生?

最佳答案

为标签添加属性。

function fireButton() {
console.log("Button fired!");
}
<label for=''>Label
<button onclick="fireButton()">Button</button>
</label>

关于javascript - 防止点击标签触发子按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64803356/

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