如何在PHP中启用禁用?

时间:2019-07-04 07:11:25

标签: javascript php html css

<td>Cases not taken up Notification</td>
<td>
    <input type="radio" name="notify" checked value="yes">Enable&nbsp;/&nbsp;
    <input type="radio" name="notify" value="no">Disable
</td>

如果用户单击“禁用”按钮,则需要禁用该通知。

3 个答案:

答案 0 :(得分:0)

您可以使用javascript或jquery在客户端执行此操作,同时以下是您可以使用的javascript片段。

<table>
    <tr> 
            <td id="to_be_disbaled">Cases not taken up Notification</td>
            <td><input type="radio" name="notify" checked value="yes" onclick="enable()">Enable&nbsp;/&nbsp;
            <input type="radio" name="notify" value="no" onclick="disable()">Disable
            </td>        
    </tr>

</table>

<script>

function disable(){
    alert("call disbale")
    document.getElementById("to_be_disbaled").disabled = true;
}
function enable(){
    alert("call enable")
    document.getElementById("to_be_disbaled").disabled = false;
}

</script>

答案 1 :(得分:0)

要明确:您所提出的问题与PHP无关。您的示例是纯HTML,您将获得的大多数答复将在逻辑上使用HTML / CSS和(可能是)JavaScript。

上面的Vanilla JavaScript和Vanilla CSS答复都回答了您的问题,就像没有PHP一样。

如果您可以在用户提交表单后向我们提供更多有关您的选择将如何处理的信息,我们也许可以提供基于PHP的更有用的答复。

答案 2 :(得分:-2)

我相信您需要一个Toggle Switch,并且可以使用w3schools中显示的CSS来做到这一点: https://www.w3schools.com/howto/howto_css_switch.asp 您也可以使用JavaScript切换按钮。这是设计问题,PHP并不是要解决设计问题