我在添加课程时遇到问题"隐藏"在setTimeout函数之后返回#artist。我不知道问题所在。
$('#user_type span').click(function(){
value = $(this).attr('value');
$('#user_type input[name="user_type"]').val(value);
$('#user_type').addClass('hide');
$('#welcome').fadeIn(500).removeClass('hide');
setTimeout(function(){
$('#artist').fadeIn(1000).removeClass('hide');
$('#artist_name').focus();
},1500);
$('#artist').change(function(){
$('#artist').addClass('hide');
$('#pass').fadeIn(500).removeClass('hide');
$('#artist_pass').focus();
})
});
上面的代码有效地将类添加到html元素中,但它没有从视口中删除。