0

我有下面的代码。

阶段 1 单选按钮必须启用其下方的 2 个复选框,阶段 2 单选按钮也是如此。

如果选择了另一个单选按钮,则必须再次禁用复选框。

我已经有 50% 的想法在起作用,但也不知道如何在第 2 阶段执行此操作。

下面是我的代码。我的 JavaScript 知识非常非常差。先感谢您!!

<html>
<head>
</head>
</body>
<table border=1>
<tr>
    <td>
        <form name="phaseform" action=""><font size=2>
        <input type="radio" name="phase" value="1" id="phase" onclick="checkbox(0)" />
            <label for="phase1">Phase 1</label>
    </td>
    <td><font size=2>
        <input type="radio" name="phase" value="2" id="phase" onclick="checkbox(1)" />
            <label for="phase2">Phase 2 (after 17 days)</label>
    </td>
</tr>
<tr>
    <td><font size=2>
        <input type="checkbox" disabled checked id="TerminateP1" name="TerminateP1" value="IN">Terminate AD account<br>
        <input type="checkbox" disabled checked id="MailboxAccessP1" name="MailboxAccessP1" value="IN">Grant mailbox access to manager<br>
    </td>
    <td><font size=2>
        <input type="checkbox" disabled checked id="TerminateP2" name="TerminateP2" value="IN">Fully terminate AD account<br>
        <input type="checkbox" disabled checked id="DisableMailboxP2" name="DisableMailboxP2" value="IN">Disable mailbox<br>
    </td>
</tr>
</form>

<script type="text/javascript">
        function checkbox(val)
        {
            if(val)
        document.phaseform.TerminateP1.setAttribute("disabled",val) 
        else
        document.phaseform.TerminateP1.removeAttribute("disabled",val)
            if(val)
        document.phaseform.MailboxAccessP1.setAttribute("disabled",val)
        else
        document.phaseform.MailboxAccessP1.removeAttribute("disabled",val)
        }
</script>

</table>
</body>
<html>
4

2 回答 2

0
function checkbox(val)
    {
        document.phaseform.TerminateP1.setAttribute("disabled",val) 
        document.phaseform.MailboxAccessP1.setAttribute("disabled",val)
        document.phaseform.TerminateP2.setAttribute("disabled",val) 
        document.phaseform.DisableMailboxP2.setAttribute("disabled",val)
        if(val)
        {
            document.phaseform.TerminateP2.removeAttribute("disabled",val) 
            document.phaseform.DisableMailboxP2.removeAttribute("disabled",val)
        }
        else
        {
            document.phaseform.TerminateP1.removeAttribute("disabled",val)
            document.phaseform.MailboxAccessP1.removeAttribute("disabled",val)
        }
    }
于 2013-05-16T00:24:22.810 回答
0

删除了表格,对 Tyler 的代码进行了条纹化,现在它可以在 HTA 中正常工作。有人可以告诉我下面的代码是否会导致任何未来的问题?

function checkbox(val)
{
    TerminateP1.setAttribute("disabled",1) 
    MailboxAccessP1.setAttribute("disabled",1)
    TerminateP2.setAttribute("disabled",1) 
    DisableMailboxP2.setAttribute("disabled",1)
    if(val)
    {
        TerminateP2.removeAttribute("disabled") 
        DisableMailboxP2.removeAttribute("disabled")
    }
    else
    {
        TerminateP1.removeAttribute("disabled")
        MailboxAccessP1.removeAttribute("disabled")
    }
}
于 2013-05-16T10:01:25.547 回答