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);
});
})