Сообщение от Batyabest
|
Подскажите как при смене состояния чекбокса сменить текст метки на "В сравнении"
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function(){
$('#srav > :checkbox').click(function(){
this.nextSibling.nodeValue=(this.checked)? ' В сравнении': ' Сравнить';
});
});
</script>
</head>
<body>
<label id="srav">
<input type="checkbox" value="1052" id="choiseFunc"/> Сравнить
</label>
</body>
</html>