CheckBox按钮提交时标签颜色的改变



第一步

我想在按下验证按钮后改变复选框标签的颜色:绿色表示ok,红色表示错误选择。

下面是我的代码:'50One hundred.5001000
<button onclick="verif();">VERIFIER</button>
<script src="script.js"></script>'

verif()函数{如果(choix1.checked){. getelementbyid (50) .style。Color = 'red';}

<button id="verifybutton" onclick="verif();">VERIFIER</button>
//js code        
function verif() { if(choix1.checked) { 
document.getElementById('verifybutton').style.color = 'red'; }

你可以这样试试

相关内容

  • 没有找到相关文章

最新更新