gpt4 book ai didi

javascript - 根据单选按钮选择隐藏“确定”按钮

转载 作者:行者123 更新时间:2023-11-28 09:17:40 24 4
gpt4 key购买 nike

我有一个带有单选按钮字段的共享点列表。如果有人选择“否”,则应禁用“确定”按钮,但如果选择"is",则应启用“确定”按钮。我需要在 CEWP 中编写一段 javascript 来实现这一目标,而无法访问 SPD,有人可以建议吗?

最佳答案

<script type = "text/javascript">
function test_enable(id,id2)
/*parameter "id" should be id of "no" radiobutton and "id2" is of yes button
*/
{
if(document.getElementById(id).checked==true)
{
document.getElementById(id2).enabled==false;
}
else
{
document.getElementById(id2).enabled==true;
}
}
</script>


<input type = "radio" id = "id" onchange = "test_enable('id','id2')" value = "No">

<input type = "button" id = "id2" onclick = "foo()" value = "click me!">

简单!

关于javascript - 根据单选按钮选择隐藏“确定”按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15438554/

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