在chrome上点击操作,但在Firefox中不起作用

问题描述 投票:-1回答:1

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

});

javascript firefox cross-browser webbrowser-control compatibility
1个回答
0
投票

我只是将$替换为jQuery。并且可以正常工作。

© www.soinside.com 2019 - 2024. All rights reserved.