gpt4 book ai didi

javascript - 如果在 aspx 页面中使用 javascript 启用了复选框,则需要启用按钮

转载 作者:行者123 更新时间:2023-11-28 20:45:00 24 4
gpt4 key购买 nike

如果在 aspx 页面中使用 javascript 启用了复选框,则需要启用按钮。这是我在 aspx 页面中的代码。请帮忙!

<script type="text/javascript">
function checkButt(obj) {
alert("Inside the function");
document.getElementById('<%=btnLoadForm.ClientID%>').disabled = !obj.checked;
}

最佳答案

使用以下代码即可得到解决方案。

Javascript

<script type="text/javascript">

function enableordisable() {
if (document.getElementById('CheckBox1').checked == true) {
document.getElementById('Button1').disabled = false;
}
else {
document.getElementById('Button1').disabled = true;
}
}

HTML




 
    





关于javascript - 如果在 aspx 页面中使用 javascript 启用了复选框,则需要启用按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13653168/

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