Ajax请求另一个人的成功(jQuery)

时间:2014-09-04 17:17:55

标签: javascript jquery html ajax xmlhttprequest

我想在一个人的成功上运行另一个ajax请求。

代码

$(document).ready(function(){

    $('*[data-load-template]').each( function () {

        var template = $(this).data('load-template');
        var element = $(this);

        $.ajax({
            url     : "templates/" + template + '.tpl',
            method  : "GET",
            success : function (htmlData) {
                $.ajax({
                    url     : "data/" + template + '.json',
                    method  : "GET",
                    success : function (jsonData) {
                        console.log(jsonData); // why isn't this one working???
                    }       

                });
                element.html(htmlData); // this is working
            }

        });

    });

}); // dom ready event

我的问题是为什么这段代码不起作用,以及如何使它工作。

0 个答案:

没有答案