Аякс Саммит, но ничего не случилось - PullRequest
0 голосов
/ 22 ноября 2018

У меня есть этот сценарий, но ничего не происходит, может кто-то сказать мне, что не так? Я хочу создать чат, но ничего не происходит, когда я нажимаю кнопку, стек, кто-то может сказать мне, что не так, и дать мнеподробно о том, что я должен делать? Или кто-то другой, пожалуйста, извините меня за этот длинный пост, но здесь я не могу написать меньше деталей, спасибо заранее

<?
//include("write_chat.php");
$rid = $_GET["rid"];


echo "<div id='postResults'></div>";

?>


<script>

//inregistrare postare
$('body').on('submit', '#contact-form', function(){
  $.post('index.php?page=writechat&rid=".$_GET["rid"].", $(this).serialize(), function(resp){
    alert(resp);
  });
  return false;
});

//afisare la interval de timp
setInterval(function(){
  $('#content').load(index.php?page=writechat&rid=".$_GET["rid"]');
}, 5000);







  (function($)
  {
      $(document).ready(function()
      {
          $.ajaxSetup(
          {
              cache: false,
              beforeSend: function() {
                  $('#content').hide();
                  $('#loading').show();
              },
              complete: function() {
                  $('#loading').hide();
                  $('#content').show();
              },
              success: function() {
                  $('#loading').hide();
                  $('#content').show();
              }
          });
          var $container = $("#content");
          $container.load("<?php echo "index.php?page=writechat&rid=".$_GET["rid"].""; ?>");
          var refreshId = setInterval(function()
          {
              $container.load('<?php echo "index.php?page=writechat&rid=".$_GET["rid"].""; ?>');
          }, 5000);
      });
  })(jQuery);


</script>


<body>
<div id ="content"></div>

<form  id="contact-form" class="bl_form text-center" action="<?php echo "../../index.php?page=writechat&rid=$rid"; ?>" method="post" novalidate>
  <span class="field-wrap scrollimation fade-
    right">
  </span>
  <span 
    class="field-wrap scrollimation fade-left">
  <textarea id="contact-message" 
    name="message" rows="5" class="label_better requiredField" data-new-
    placeholder="Message"  style="margin: 0px; width: 1210px; 
    height: 88px;" data-error-empty="<?php echo "$insert_message"; ?>"></textarea>
  </span>
  <p class="text-center"><button  name="sy2" 
    id="submit_post" type="submit"  class="btn btn-sm btn-primary icon-left" data-error-
    message="Error!" data-sending-message="Sending..." data-ok-message="Message Sent"><i 
    class="fa fa-paper-plane"></i>Send Message</button></p>
  <input type="hidden" name="submitted" 
    id="submitted" value="true" />
  <?php echo "<postfield name=\"message\" 
    value=\"$(message)\"/>"; ?>
</form>
</body>
...