Сообщение от Mamayoto
|
При чекнутом Checkbox надо Перекрасить Label в другой цвет
|
Предложу такой вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
.on {
color: red;
}
</style>
<script type="text/javascript">
$(document).ready(function(){
$('input').click(function(){
$(this).parent().toggleClass('on');
});
});
</script>
</head>
<body>
<ul>
<li><label><input type="checkbox" />Acer</label></li>
<li><label><input type="checkbox" />Apple</label></li>
<li><label><input type="checkbox" />Asus</label></li>
<li><label><input type="checkbox" />Dell</label></li>
</ul>
</body>
</html>