我尝试在用户选中复选框后更改复选框的背景颜色和刻度颜色。
<input type="checkbox" value="checkbox" />
例如:一旦检查了使用,我想把盒子变成蓝色。
我已经在谷歌上搜索了一段时间,但仍然无法解决这个问题。
任何帮助将不胜感激。
你可以使用:
http://www.no-margin-for-errors.com/projects/prettycheckboxes/
$(document).ready(function() {
$('input[name=thisBox]').change(function () {
if (this.checked) {
//Code to change checkbox
}
});
});