Сообщение от ss18EXEL
|
как бы скрипт исправить
|
Да хоть бы так...
<!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">
label {
display: block;
}
label + label {
margin-top: 2px;
}
label [type='text'] {
display: none;
}
</style>
<script type="text/javascript">
$(document).ready(function (){
$(':checkbox').click(function (){
if (this.checked) {
$(this).nextAll('input:text').show().val(this.value);
} else {
$(this).nextAll('input:text').hide();
};
});
});
</script>
</head>
<body>
<form>
<label>
Item 1
<input type='checkbox' value='1' />
<br />
<input type='text' value='' />
</label>
<label>
Item 2
<input type='checkbox' value='2' />
<br />
<input type='text' value='' />
</label>
<label>
Item 3
<input type='checkbox' value='3' />
<br />
<input type='text' value='' />
</label>
</form>
</body>
</html>