在ajax响应中设置标题attr

时间:2014-07-28 01:21:55

标签: jquery ajax

title属性在ajax返回之前设置。 ajax返回不会更改title属性。

$('body').on('mouseenter', '[id^=section]', function(){
        $(this).prop('title', '');
        var $this = $(this);
        answerid = $(this).attr('id');
        camNumber = answerid.slice(7);
        $.post(
          gp_ajax_settings.ajax_url,
        {
            'canvasObject': getCanvasObjectFromURL(),
            'cameraNumber': camNumber,                      
            'action': 'gp_populate_camera_title'
        },
        function(response){
            varResponse = $.parseJSON(response);
            $this.prop('title', varResponse.count + varResponse.mostRecent);
        });       
    })

0 个答案:

没有答案