此js代码段在Android上不起作用。 也许这可能是因为android不支持某些类?
$(document.body).on('click', '.broker_management_table th .btn_sort_on a', function(event){
event.preventDefault();
$('.btn_sort_on').find('a').attr('data-status', 'false');
$('.btn_sort_on').find('strong').removeClass('active');
var $self = $(this);
$self.closest('strong').addClass('active');
$self.attr('data-status', 'true');
sendFilters();
});