如何使我的复选框在单击时不被取消选中?

时间:2018-09-01 14:30:47

标签: javascript php checkbox

我有一个复选框,实际上是多个复选框,但是我只希望一个复选框能够将其设置为开和关。但是要注意的是,我有一个POST发送一个PHP变量来确定是否在加载时选中了该框。但是我使用的方法不允许我取消选中gainNode.gain.exponentialRampToValueAtTime(0.001, audioCtx.currentTime + 5); setTimeout(function(){ const val = gainNode.gain.value; gainNode.gain.cancelScheduledValues(audioCtx.currentTime); gainNode.gain.setValueAtTime(val, audioCtx.currentTime); gainNode.gain.exponentialRampToValueAtTime(1, audioCtx.currentTime + 5); }, 3000); 复选框,因此我的JScript不会取消选中它。

我不确定我的解释是否能解决问题,所以我希望代码能解决问题。

如果有人能看到解决此问题的简单方法,我将不胜感激。我只想要一个复选框,该复选框可以检查POST是否已发送,而单击时不选中。

谢谢。

IF $VAR="YES" CHECKBOX = CHECKED

1 个答案:

答案 0 :(得分:0)

尝试

document.getElementById("withvideo").disabled = true; 

代替

 document.getElementById("withvideo").checked = true;