为什么 slideDown() 第一次不起作用?
$('#lnkInfo').click(function (e) {
e.preventDefault();
$(this).blur();
if ($(this).text() == 'More info') {
$('#spnMoreInfo').slideDown(200);
$(this).text('Less info');
}
else if ($(this).text() == 'Less info') {
$('#spnMoreInfo').slideUp(200);
$(this).text('More info');
}
});
编辑:使用 Firefox 22.0