我再msdn上找到了这么一个函数,请问这个函数可以起到这个作用吗??
并且请告诉我怎么用好吗??
因为我对js不熟setTimeout--------------------------------------------------------------------------------DescriptionEvaluates an expression after a specified number of milliseconds has elapsed. Syntax
timeoutID = object.setTimeout(expression, msec [, language])Parameter Description 
expression  (String) Code to be executed at the specified interval. 
msec  (Long) Numeric value or numeric string in millisecond units. 
language  Optional. (String) String that specifies the language in which the code is executed. Return ValueReturns an identifier that is used only to cancel the evaluation with the clearTimeout method. Applies Towindow