JS错误未被捕获SyntaxError:意外的令牌if

问题描述 投票:-1回答:1

我已经编写了之前有效的代码,在网站上的其他一些其他细节之后,我的脚本停止了工作。我不确定为什么我不工作的原因。我在控制台中遇到以下错误:

未捕获的SyntaxError:意外的令牌if

代码:

<script>
    $(document).on('click', '.btnsss', function(){
            var id = $(this).attr('data-id');
            var task = "fav";

            $.ajax(
               {
                  type:'GET',
                  url:'process.php',
                  context: this,
                  data: { "id": id, "task": task }
                  if(data === "4"){
                            window.location.href = '/prijava';
                        } else if(data === "1" || data === "2") {
                            alert('Doslo je do greske!');
                        } else {                  
                        success: function(data){
                        console.log(data);

                        $(this).addClass('active');
                        $(this).find('i').removeClass('glyphicon glyphicon-star-empty').addClass('glyphicon glyphicon-star');
                        $(this).removeClass('btn-success').addClass('btn-default');
                        $(this).removeClass('btnsss').addClass('btnrrr');

                        $.blockUI({ message: ' <center> <h1><span class="glyphicon glyphicon-th spin"></span></h1> <p> Ucitavanje. . .</p> </center> ' });  
                        setTimeout($.unblockUI, 500); 
                        }
                  }
               }
            );
    });
    </script>

我也是js的初学者,但第一次我解决了所有这些脚本停止工作任何建议后,所有这些脚本都工作了吗?

javascript php jquery mysql ajax
1个回答
1
投票

无效的JavaScript。 if语句正好在对象声明的中间。更像这样的东西可能适合你,虽然我不完全确定你想要的最终结果是什么。

{
  type:'GET',
  url:'process.php',
  context: this,
  data: { "id": id, "task": task },
  success: function(data) {
    console.log(data);
    if(data === "4"){
        window.location.href = '/prijava';
    } else if(data === "1" || data === "2") {
        alert('Doslo je do greske!');
    } else { 
      $(this).addClass('active');
      $(this).find('i').removeClass('glyphicon glyphicon-star-empty').addClass('glyphicon glyphicon-star');
      $(this).removeClass('btn-success').addClass('btn-default');
      $(this).removeClass('btnsss').addClass('btnrrr');

      $.blockUI({ message: ' <center> <h1><span class="glyphicon glyphicon-th spin"></span></h1> <p> Ucitavanje. . .</p> </center> ' });  
      setTimeout($.unblockUI, 500); 
    }
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.