为什么这段代码不能与jQuery 1.10.2一起使用,而是使用1.8.3? 是否可能有任何微小的变化来修复它?
$(document).ready(function(){
$(".mob-nav-overlay").hide();
$(".mob-nav-button").show();
$('.mob-nav-button').toggle(function() {
$("#mob-nav-close").html("x");
$(".mob-nav-overlay").fadeIn("fast");
})},
function() {
$("#mob-nav-close").text("#");
$(".mob-nav-overlay").fadeOut("fast");
})
});
非常感谢!保罗
答案 0 :(得分:3)
jQuery 1.8中不推荐使用.toggle()
事件,并在jQuery 1.9中将其删除。