$('#error_Box_text').html('error text').delay(5000).html('')
#
jQuery 1.4
$('#error_Box_text').html('error text').delay(5000).queue(function() { $(this).html('') });
如果你能做的话会很好
$('#error_Box_text').html('error text').delay(5000,function() { $(this).html('') });
但这是不可能的(还)。