gpt4 book ai didi

javascript - BS4 : Disable Button with a button

转载 作者:行者123 更新时间:2023-11-29 23:18:29 32 4
gpt4 key购买 nike

我目前正在尝试自学 BS4 以完成我正在开发的项目@work。基本上我有一个按钮组(2 个。左边一个是事件的,右边一个是禁用的)我想做的是禁用左边的按钮并激活右边的按钮,反之亦然。 Here is the code :

<div class="btn-group">
<button type="button" id="showscore" class="btn btn-success">Show</button>
<button type="button" id="hidescore" class="btn btn-danger" disabled>Hide</button>
</div>

还有 JS:

function lockbutton() {
var x = document.getElementById("#showscore").button;
if(x.click()) {
document.getElementById("hidescore").disabled = true;
} else{
document.getElementById("hidescore").disabled = false;
}
}

不要为了 JS/jQuery 代码而 mock 我。我已经知道这是错误的。但我找不到解决方法。

最佳答案

您可能想要使用 bootstrap 中包含的 jQuery 库。

$(document).ready(function() {

$('#showscore').click(function() {
$('#hidescore').prop('disabled', false);
$(this).prop('disabled', true);
});

$('#hidescore').click(function() {
$('#showscore').prop('disabled', false);
$(this).prop('disabled', true);
});

});

关于javascript - BS4 : Disable Button with a button,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51745759/

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