gpt4 book ai didi

javascript - 单击特定项目时执行js函数

转载 作者:行者123 更新时间:2023-11-28 14:08:40 25 4
gpt4 key购买 nike

请告诉我如何在单击按钮时执行 go2 函数而不执行 go 函数

function go($i) {
alert($i);
}
function go2($i) {
alert($i);
}
div {
width: 200px;
height: 200px;
background: #eaeaea;
}
<div onclick="go('159');">
<button onclick="go2('160');">Go 2</button>
</div>

最佳答案

你需要使用event.stopPropagation()

function go($i) {
alert($i);
}
function go2($i) {
event.stopPropagation();
alert($i);
}
div {
width: 200px;
height: 200px;
background: #eaeaea;
}
<div onclick="go('159');">
<button onclick="go2('160');">Go 2</button>
</div>

关于javascript - 单击特定项目时执行js函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60336109/

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