我的代码是一个表单验证,如果没有填写比使用jquery显示X错误它工作正常但我想添加当错误显示我希望它以淡入淡出的风格。感谢。
function error1(act,txt1){
hideshow1('error1',act);
if(txt1) $('#error1').fadeIn('slow', function(txt1){
$(this).html();
});
}
答案 0 :(得分:3)
试试这个
function error1(act, txt1)
{
hideshow1('error1', act);
if (txt1)
{
$('#error1').html(txt1).fadeIn('slow');
}
}