作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个小问题,我希望你能帮助我,我正在尝试在用户单击 radio 时禁用输入文本。
我的代码:
<script>
function grise(radio)
{
if(radio[0].checked){
document.anglais.annee.disabled=true;
document.anglais.niv.disabled=true;
document.anglais.testuti.disabled=true;}
if(radio[1].checked){
document.anglais.annee.disabled=false;
document.anglais.niv.disabled=false;
document.anglais.testuti.disabled=false;}
}
</script>
和形式:
<form name="anglais">
<input type="radio" id="NON" name="EVAL_ANGLAIS" onclick="grise(this.form.EVAL_ANGLAIS)" checked="checked" value="NON" <?=($personne->EVAL_ANGLAIS == "NON")?"checked":""?> >NON</br></br>
<input type="radio" id="OUI" name="EVAL_ANGLAIS" onclick="grise(this.form.EVAL_ANGLAIS)" value="OUI" onclick="active()" <?=($personne->EVAL_ANGLAIS == "OUI")?"checked":""?>>OUI</br></br>
Année : <input id="annee" disabled type="text" name="EVAL_ANGLAIS_ANNEE" style="width:30px; " value="<?=$personne->EVAL_ANGLAIS_ANNEE?>" >
Test utilisé : <input id="testuti" disabled type="text" name="EVAL_ANGLAIS_TEST" style="width:50px; " value="<?=$personne->EVAL_ANGLAIS_TEST?>" >
Niveau atteint : <input id = "niv" disabled type="text" name="EVAL_ANGLAIS_NIV" style="width:50px; " value="<?=$personne->EVAL_ANGLAIS_NIV?>" >
</form>
最佳答案
您应该尝试document.getElementById('annee').disabled=true;
关于forms - JavaScript : disable an input type text when clicking on a radio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23292886/
我是一名优秀的程序员,十分优秀!