选项卡单击可在 chrome 上工作,但不能在 Firefox 上工作
Posted
技术标签:
【中文标题】选项卡单击可在 chrome 上工作,但不能在 Firefox 上工作【英文标题】:Tabs clicking work on chrome but not in firefox 【发布时间】:2020-03-30 16:10:58 【问题描述】: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');
);
);
【问题讨论】:
【参考方案1】:我只是将 $ 替换为 jQuery。它工作正常。
【讨论】:
以上是关于选项卡单击可在 chrome 上工作,但不能在 Firefox 上工作的主要内容,如果未能解决你的问题,请参考以下文章
Google Chrome 扩展程序 - 单击工具栏图标时打开新选项卡