JavaScript代码$(document).ready(function(){
$('#tone th:first').addClass('active');
$('#tone tbody:not(:first)').hide();
$("#tone th").on('click', function(event){
var clicked_th = $(this).attr('id');
$('#tone tbody').hide();
$('.'+clicked_th+'-body').show();
$('#tone th').removeClass('active');
$(this).addClass('active');
});
});
我只是将$替换为jQuery。并且可以正常工作。