0

なぜこのエラーが発生するのですか?

Uncaught SyntaxError:予期しないトークン

25行目のエラー。

$('form.ajax').on('submit', function() {
    var that = $(this),
        url = that.attr('action'),
        type = that.attr('method'),
        id = that.attr('id'),
        data = {};

    that.find('[name]').each(function(index, value) {   
        var that = $(this),
            name = that.attr('name'),
            value = that.val();

        data[name] = value; 
    });

    $.ajax({    
        url: url,
        type: type,
        id: id,
        data: data,
        error: function(response){
        $(document).ready(function() { $("div").append("<div id='error'>Error</div>"); });
        },
        success: function(response) {
            //Error on this line -> //   $(".comContainer " + id +   ).load(location.href+" .comContainer " + id + ">*","");
        }   
    });


    return false;
});

ここで何か問題がありますか?見えない

コードを取得するためのhtmlコードは次のとおりです。

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
4

1 に答える 1

2

あなたは余分なものを持っています+

$(".comContainer " + id +   )

する必要があります

$(".comContainer " + id)
于 2013-03-13T23:00:34.987 に答える