Сообщение от imengine
|
Решение у меня не работает.
|
Как вариант...
<!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">
</style>
<script type="text/javascript">
$(function(){
$('#container input:radio').click(function (){
$('#container input:radio').each(function (){
if (this.checked) {
$(this).parent().next().children('input').removeAttr('disabled');
} else {
$(this).parent().next().children('input').attr('disabled',true);
};
});
});
});
</script>
</head>
<body>
<div id='container'>
<div><input id="weight" name="weight" type="radio" value="Вес" checked="checked" />Вес</div>
<div><input id="weight_num" name="weight_num" type="text" value="[[!+fi.weight_num]]" /> кг</div>
<div><input id="number" name="weight" type="radio" value="Количество мест">Количество мест</div>
<div><input id="number_num" name="number_num" type="text" value="[[!+fi.number_num]]" disabled /> шт.</div>
</div>
</body>
</html>