Ajax无法运行。它没有显示任何错误

时间:2018-05-14 06:22:24

标签: php ajax codeigniter-3

我在我的应用程序中使用了Ajax。以前它很好,并且检查很多次。现在不行。我在这段代码中没有改变任何内容。

我检查了URL路径,并且还检查了Jquery点击事件。

它不会在控制台日志中显示任何错误。

$(".submit").click(function(event) {
    event.preventDefault();
    var month = $("#month").val();
    var zone = $("#zone").val();    
    $.ajax({
      type: 'POST',
      url: '<?php echo base_url().'index.php/ContMain/generate'; ?>',
      dataType: 'json',
      data: {month: month, zone: zone},
      success: function(res) {  
         alert(res);
      }

   });
});

1 个答案:

答案 0 :(得分:1)

  1. 使用镶边来访问该页面,然后按 F12 ,然后选择 Netwrok 面板。
  2. 确保请求网址有效,状态代码等于200,请求标题有效。
  3. enter image description here

    1. 此类代码显示结果或错误
    2. &#13;
      &#13;
      $(window).on('scroll', function() {
          $('.imgli').each(function(){
              if ($(this).isInViewport()) {
                  $(this).attr("src", $(this).attr("data-src") + "?" + $.now());
              }
          });
      });
      
      &#13;
      &#13;
      &#13;