0
我剛剛用jQuery 1.10做了一個jQuery切換,它消失了。在jquery 1.10版本上消失的切換框
但它在jQuery 1.6版本上正常工作。
我需要什麼來解決這個問題?
http://jsfiddle.net/5Wu6m/261/
$(".login").toggle(function() {
$(this).animate({left: '20'},80);
$(this).removeClass('on');
$('.tab2').show('');
$('.tab1').hide('');
}, function() {
$(this).animate({left: '0'},80);
$(this).addClass('on');
$('.tab1').show('');
$('.tab2').hide('');
});
你想實現什麼? – webeno