ajax中的语法错误

时间:2015-03-01 07:57:25

标签: javascript jquery ajax

我从网上获得了这个脚本,我操纵它以适应我的方式,但它告诉我语法错误

$(document).ready(function(){
  $Addr = localStorage.getItem('eaddress');
  $email7 = $('#email7')

  if ($Addr !== null) {
    $('#email7').val($Addr);

  }


   if ($Addr != '') {
        $.ajax({
            type: "POST",
            url: "/ans.php",
            data: $("#form2").serialize(),
            success: function(data) {
                $('#log_msg').html(data);
                var result = $.trim(data);
                if(result==="ok"){
                window.location = 'page.html';
            }

            }

});

2 个答案:

答案 0 :(得分:0)

缺少一堆支撑:

$(document).ready(function() {
    var $Addr = localStorage.getItem('eaddress');

    if ($Addr) {
        $('#email7').val($Addr);
        $.ajax({
            type: "POST",
            url: "/ans.php",
            data: $("#form2").serialize(),
            success: function(data) {
                $('#log_msg').html(data);
                var result = $.trim(data);
                if (result === "ok") {
                    window.location = 'page.html';
                }
            }
        });
    }
});

不是绝对必需,但我还将var添加到局部变量,简化和组合以及if测试并删除了未使用的局部变量。

将来,您可以将一段代码粘贴到http://jshint.com/,它会显示您出错的地方。它还为强大的代码提出了其他建议。

答案 1 :(得分:-1)

关闭所有分号和大括号:在最后});}之前添加});

结果:

   $(document).ready(function () {
    $Addr = localStorage.getItem('eaddress');
    $email7 = $('#email7')

    if ($Addr != null) {
        $('#email7').val($Addr);

    }


    if ($Addr !== '') {
        $.ajax({
            type: "POST",
            url: "/ans.php",
            data: $("#form2").serialize(),
            success: function (data) {
                $('#log_msg').html(data);
                var result = $.trim(data);
                if (result === "ok") {
                    window.location = 'page.html';
                }

            }
        });
    }
});