$('.table>tbody>tr').mouseout(function(){
var index=$(this).index();
setTimeout(function(){
console.log(index);
console.log($(this));
$(this).parents('.table').siblings('.check-btn').children('p').eq(index).children('input').addClass('hiddens');
console.log($(this).parents('.table').siblings('.check-btn').children('p').eq(index).children('input'));
},2000);
setTimeout打印的this是window
这是为什么呢?求大神指教