Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #1 (permalink)  
Старый 06.09.2014, 20:27
Кандидат Javascript-наук
Отправить личное сообщение для soltx Посмотреть профиль Найти все сообщения от soltx
 
Регистрация: 19.05.2013
Сообщений: 144

Вызов формы, при повторном вызове (ajax)
Привет, есть сайт promojet.su есть всплывающая форма, работает на ajax,
после того как удачано отправили форму, выскакивает сообщение "спасибо" и если закрыть сообщение и опять вызвать форму не обновляя страницу, то формы не будет, а только сообщение "спасибо" .

Так вот вопрос, как вызвать по новой форму, не обновляя страницу.

код js:


$(document).ready(function() {
	
	//if submit button is clicked
	$('#form').submit(function () {		
		
		//Get the data from all the fields
		var name = $('input[name=name]');
		var email = $('input[name=email]');
		var tel = $('input[name=tel]');
		
	

		//Simple validation to make sure user entered something
		//If error found, add hightlight class to the text field
		if (name.val()=='') {
			name.addClass('hightlight');
			return false;
		} else name.removeClass('hightlight');
		if (email.val()=='') {
			email.addClass('hightlight');
			return false;
		} else email.removeClass('hightlight');
		
		if (tel.val()=='') {
			tel.addClass('hightlight');
			return false;
		} else tel.removeClass('hightlight');
		
		
		
		
		
		
		
		//organize the data properly
		var data = 'name=' + name.val() +  '&email=' + email.val() + '&tel=' + 
		tel.val();
		
		//disabled all the text fields
		
		
		//show the loading sign
		$('.loading').show();
		
		//start the ajax
		$.ajax({
			//this is the php file that processes the data and send mail
			url: "process.php",	
			
			//GET method is used
			type: "GET",

			//pass the data			
			data: data,		
			
			//Do not cache the page
			cache: false,
			
			//success
			success: function (html) {				
				//if process.php returned 1/true (send mail success)
				if (html==1) {					
					//hide the form
										
					
					//show the success message
					
					
					
                      
						$('.blk-data .form1').fadeOut('slow');
						$('.loading').fadeOut('slow');

					$('.done').fadeIn('slow');
					
				//if process.php returned 0/false (send mail failed)
				} else alert('Sorry, unexpected error. Please try again later.');				
			}		
		});
		
		//cancel the submit button default behaviours
		return false;
	});	
});



код php

//Retrieve form data. 
//GET - user submitted data using AJAX
//POST - in case user does not support javascript, we'll use POST instead
$name = ($_GET['name']) ? $_GET['name'] : $_POST['name'];
$email = ($_GET['email']) ?$_GET['email'] : $_POST['email'];
$tel = ($_GET['tel']) ?$_GET['tel'] : $_POST['tel'];


//flag to indicate which method it uses. If POST set it to 1
if ($_POST) $post=1;

//Simple server side validation for POST data, of course, you should validate the email
if (!$name) $errors[count($errors)] = 'Please enter your name.';
if (!$email) $errors[count($errors)] = 'Please enter your email.'; 
if (!$tel) $errors[count($errors)] = 'Please enter your tel.'; 


//if the errors array is empty, send the mail
if (!$errors) {

	//recipient
	$to = 'Your Name <hello@domain.ru>';	
	//sender
	$from = $name . ' <' . $email . '>';
	
	//subject and the html message
	$subject = 'Сообщение с сайта PromoJet  ';	
	$message = '
	<!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></head>
	<body>
	<table>
		<tr><td><strong>Имя:</strong></td><td>' . $name . '</td></tr>
		<tr><td><strong>Email:</strong></td><td>' . $email . '</td></tr>
		<tr><td><strong>Телефон:</strong></td><td>' . $tel . '</td></tr>
		
	</table>
	</body>
	</html>';

	//send the mail
	$result = sendmail($to, $subject, $message, $from);
	
	//if POST was used, display the message straight away
	if ($_POST) {
		if ($result) echo 'Thank you! We have received your message.';
		else echo 'Sorry, unexpected error. Please try again later';
		
	//else if GET was used, return the boolean value so that 
	//ajax script can react accordingly
	//1 means success, 0 means failed
	} else {
		echo $result;	
	}

//if the errors array has values
} else {
	//display the errors message
	for ($i=0; $i<count($errors); $i++) echo $errors[$i] . '<br/>';
	echo '<a href="/">Back</a>';
	exit;
}


//Simple mail function with HTML header
function sendmail($to, $subject, $message, $from) {
	$headers = "MIME-Version: 1.0" . "\r\n";
	$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
	$headers .= 'From: ' . $from . "\r\n";
	
	$result = mail($to,$subject,$message,$headers);
	
	if ($result) return 1;
	else return 0;
}
Ответить с цитированием
  #2 (permalink)  
Старый 07.09.2014, 01:46
Профессор
Отправить личное сообщение для Rise Посмотреть профиль Найти все сообщения от Rise
 
Регистрация: 07.11.2013
Сообщений: 912

soltx,
$('.blk-data .form1').fadeOut('slow').delay(3000).fadeIn('slow');
$('.loading').fadeOut('slow');
$('.done').fadeIn('slow').delay(3000).fadeOut('slow');
Ответить с цитированием
  #3 (permalink)  
Старый 07.09.2014, 14:01
Кандидат Javascript-наук
Отправить личное сообщение для soltx Посмотреть профиль Найти все сообщения от soltx
 
Регистрация: 19.05.2013
Сообщений: 144

Rise,
спасибо работает, но эффект нужен другой, что бы сообщение висело и если его закрыть и повторно вызвать появилась сброшенная форма.

Последний раз редактировалось soltx, 07.09.2014 в 14:14.
Ответить с цитированием
  #4 (permalink)  
Старый 07.09.2014, 15:19
Профессор
Отправить личное сообщение для Rise Посмотреть профиль Найти все сообщения от Rise
 
Регистрация: 07.11.2013
Сообщений: 912

soltx, смотри в сторону метода afterClose всплывающего окна fancybox.
Ответить с цитированием
  #5 (permalink)  
Старый 07.09.2014, 23:07
Кандидат Javascript-наук
Отправить личное сообщение для soltx Посмотреть профиль Найти все сообщения от soltx
 
Регистрация: 19.05.2013
Сообщений: 144

Rise, спасибо
Ответить с цитированием
Ответ



Опции темы Искать в теме
Искать в теме:

Расширенный поиск


Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
Блокировка запуска скрипта при повторном нажатии если скрипт досих пор выполняется BesTime jQuery 4 20.12.2013 17:24
Открытие полей формы при выборе определенного radio gvelisperi Internet Explorer 2 15.12.2013 03:32
Отправка файла при помощи ajax Купэ AJAX и COMET 1 09.12.2013 17:39
результат при вызове своей функции 9112 AJAX и COMET 11 12.02.2013 11:23
Объясните как вызывается ajax скрипт AddressBook из формы prog90 AJAX и COMET 3 06.06.2009 16:12