Jump to content
  • 0

jQuery. Не работает .submit в .dialog


stalker_2000
 Share

Question

Добрый день! Сделал форму для заполнения через .dialog. При нажатии кнопки "сохранить" ничего не происходит. Подскажите, почему?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/flick/jquery.ui.all.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
// ———————————————-
$( "#add_form" ).dialog({
autoOpen: false,
closeOnEscape: true,
modal: true,
buttons: {
"Сохранить": function() {
$(this).dialog("close");
$('#form1').submit(function(){
alert('Форма form1 отправлена на сервер');
return false;
});
},
"Отмена": function() {
$(this).dialog("close");
}
}
});

$('button').button();

$('#add_button').click(function() {
$("#add_form").dialog("open");
});
// ———————————————-
});
</script>
</head>

<body>

<button id="add_button">Добавить событие</button>

<form id="form1" method="post" action="sdfsdf.html">
<input type="hidden" name="action" value="add" />

<table id="add_form" title="Добавить">
<tr>
<td>input #1:</td>
<td><input type="text" name="date" value="13.06.2012" /></td>
</tr>
<tr>
<td>input #2:</td>
<td><input type="text" name="name" /></td>
</tr>
</table>
</form>

</body>
</html>

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Для начала установи firebug (желательно для Фокса), проверь наличие явных ошибок, если не поможет то поочередно проверяй работоспособность кода alert(); , так найдешь проблемную строку (после проблемного места alert() не выводиться)... Если вдруг ошибок нет то смотри ошибки в логике.

Edited by Tek
Link to comment
Share on other sites

  • 0

Где же их там ещё ставить? Там всего-то пару строк кода. Выполняется строго до $('#form1').submit (проверено алертом), внутрь этой функции почему-то не заходит...

Потому что ты только повесил обработчик события, а само событие кто будет вызывать? ;)

Попробуй так

$('#form1').submit(function(){
alert('Форма form1 отправлена на сервер');
return false;
}).submit();

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