Показать сообщение отдельно
  #4 (permalink)  
Старый 08.02.2016, 17:35
Профессор
Отправить личное сообщение для Dilettante_Pro Посмотреть профиль Найти все сообщения от Dilettante_Pro
 
Регистрация: 27.11.2015
Сообщений: 2,899

Нет... Делал и вот так
<!DOCTYPE html>
<html>
<head>
     <title></title>
     <style>
.hide{display:none;}
</style>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
</script>
      <script>
          $(function () {
              $("#form").onsubmit = function () {
                  var form_data = $("#form").serializeArray;
                  $.ajax({
                      url: '',
                      type: 'POST', 
                      data: form_data
                  });
                  $(".hide").style.display = "block";
              };
          });
       </script>
</head>
<body>
   <div class="hidden">
      <form action="#" id="form">
         <input type="hidden" name="prev" value="1" /> 
         <input type="submit" name="submit">
      </form>
    </div>
   <div class="hide">
    скрытый див
   </div>
</body>
</html>

все равно обновляется
Ответить с цитированием