以下代码在 Chrome 中运行良好,但在 FF 和 IE 中没有任何作用。我该如何调试呢?我在本地开发的方式意味着我不能让我的代码公开访问。
$(document).ready(function () {
// alert('dfd');
$('#mobileMenuLink a').click(function () {
event.preventDefault();
// alert('dfd');
$('#menu').toggleClass('mobileMenuOpen');
});
});