Jump to content
  • 0

Не срабатывает кнопка отправки


gesandte
 Share

Question

Решил переделать кое какие скрипты на аякс. Так как в нем не смыслю скачал пример скрипта. Скрипт рабочий.... был)

Вобщем пока внес пару небольших изменений, кнопка отправки персетала работать

<form id="myForm">
Имя пользователя:
<input id="name" name="name">
</br>

E-mail:
<input id="email" name="email">
</br>

Сообщение:
<textarea id="msg" name="msg"></textarea>
</br>

<input id="btn" type="submit" value="Отправить сообщение">
</form>

<script>
/*
function splash()
{
if (document.myForm.name.value =='')
{
alert ("Заполните имя пользователя!");
return false;
}

if (document.myForm.email.value =='')
{
alert ("Заполните e-mail!");
return false;
}

if (document.myForm.msg.value =='')
{
alert ("Заполните текст сообщения!");
return false;
}

return true;
}
*/
// загрузка сообщений из БД в контейнер messages
function show_messages()
{
$.ajax({
url: "show.php",
cache: false,
success: function(html){
$("#messages").html(html);
}
});
}

$(document).ready(function(){

show_messages();

// контроль и отправка данных на сервер в фоновом режиме при нажатии на кнопку "отправить сообщение"
$("#myForm").submit(function(){

var name = $("#name").val();
var email = $("#email").val();
var msg = $("#msg").val();
/*
if (name =='')
{
alert ("Заполните имя пользователя!");
return false;
}
if (email =='')
{
alert ("Заполните email!");
return false;
}
if (msg =='')
{
alert ("Заполните текст сообщения!");
return false;
}
*/
$.ajax({
type: "POST",
url: "action.php",
data: "name="+name+"&email"+email+"&msg="+msg+"&action=add",
success: function(msg){
show_messages();
}
});

return false;
});

});

</script>

Edited by gesandte
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

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