当用户勾选某些文本旁边的复选框时,我希望文本改变颜色。
这是我的代码:
<p style="color: #FF0000; font-weight: bold;">
I have read and agree to the terms and conditions
<input type="checkbox" id="termsChkbx" />
</p>
这是我到目前为止的功能:
function hasTickedBox( checkBoxID) {
var chkbx = document.getElementById( checkBoxID );
if ( chkbx.checked ) {
//change the font color
} else {
//do nothing
}
}