开发者

jQuery 1.5 AJAX syntax

开发者 https://www.devze.com 2023-02-13 18:49 出处:网络
I\'m learning the new jQuery $.ajax callback syntax. Q: If I move req.success outside of the $(\'td.showcities\').click function, then how should I refer to $tr?

I'm learning the new jQuery $.ajax callback syntax.

Q: If I move req.success outside of the $('td.showcities').click function, then how should I refer to $tr?

// When the user clicks on a state, the list of cities will appear. 
$('td.showcities').click(function(){
    var $tr = $(this).closest('tr');
    var StateID = $tr.data('StateID');
    var StateName = $(this).next().text();
    var req = $.ajax({
        url: 'Remote/City.cfc?queryFormat=column'
        ,data: {
            method:'WhereStateID'
            ,returnformat:'json'
            ,StateID:StateID
        }
    });
    req.success(function(result){
        $('.highlight').removeClass('highlight');
        $('.err').removeClass('err');
        if (result.MSG == '') {
            $tr.addClass('highlight');
            var qryCity = result.qry.DATA; // Normalize
            qryCity.RecordCount = result.qry.ROWCOUNT; // Normalize
            qryCity.ColumnList = result.qry.COLUMNS; // Normalize
            var TableData = '';
            for (var i = 0; i < qryCity.RecordCount; i++) {
                TableData
                +='<tr data-CityID="' + qryCity.CITYID[i] + '">'
                + '<td>' + qryCity.CITYNAME[i] + '</td&g开发者_高级运维t;'
                + '</tr>';
            };
            $('#cities tbody').empty().append(TableData);
            $('#cities thead th').text(StateName);
        } else {
            $tr.addClass('err');
            $('#msg').text(result.MSG).addClass('err');
        };
    });
});


Among the many different things you can do, probably the most convenient is passing the $tr variable as the context option to your ajax call:

var req = $.ajax({
    url: 'Remote/City.cfc?queryFormat=column'
    ,data: {
        method:'WhereStateID'
        ,returnformat:'json'
        ,StateID:StateID
    },
    context: $tr
});

In your success callback, the value of $tr will become the this variable:

req.success(success);

...

function success(result){
    $('.highlight').removeClass('highlight');
    $('.err').removeClass('err');
    if (result.MSG == '') {
        this.addClass('highlight'); // <---
    ...


You may find this post of mine useful. It explains the new deferred/promise API of AJAX in jQuery 1.5.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号