Jump to content
  • 0

Почему не работает?


Coder_D
 Share

Question

	$(document).ready(function() {
$('#submit').attr('disabled','disabled');

$('#galka').change(function(){
if($('#galka [disabled=disabled]')){
$('#submit').removeAttr('disabled');
}
else {
$('#submit').attr('disabled','disabled');
};
});
}); // end of jq_ready

Помогите разобраться почему else работает не как надо в этом примере?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script language="javascript" type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$('#submit').attr('disabled','disabled');
$('#galka').removeAttr('checked');

$('#galka').toggle(function(){
$('#submit').removeAttr('disabled');
$('#galka').attr('checked','checked');
},
function(){
$('#submit').attr('disabled','disabled');
$('#galka').removeAttr('checked');
});
}); // end of jq_ready
</script>
</head>
<body>
<form action="" method="post">
<input type="checkbox" name="ready" id="galka" />  Мне всё ясно. Готов перейти к оплате!<br />
<input type="hidden" name="to" value="" />
<input type="hidden" name="s5" value="" />
<input type="submit" value="Оплатить" id="submit" />
</form>
</body>
</html>

А вот так работает, но галочка на чекбоксе не появляется... Странно... Почему?..

Link to comment
Share on other sites

  • 0

Методом тыка нашел такое решение. Его алгоритм мне не ясен. Объясните человеческим языком, почему с live() работает, а если заменить на click(), то не работает?

	$(document).ready(function() {
$('#galka:not(:checked)').click(function(){
$('#submit').attr('disabled','disabled');
});
$('#galka:checked').live('click',function(){
$('#submit').attr('checked','checked');
$('#submit').removeAttr('disabled');
});
}); // end of jq_ready

Edited by Coder_D
Link to comment
Share on other sites

  • 0
Объясните человеческим языком, почему с live() работает, а если заменить на click(), то не работает?

По-русски:

click Привязывает обработчик к событию для всех текущих элементов набора.

А live действует иначе. Т.е. Привязывает обработчик к событию для всех текущих и будущих элементов набора.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy