<meta http-equiv="Refresh" content="0; URL=index.jsp">把0改成你想停留的时间

解决方案 »

  1.   

    META--------------------------------------------------------------------------------DescriptionProvides information about an HTML document to browsers, search engines, and other applicationsSyntax
    <META
    CONTENT=description
    HTTP-EQUIV=response
    NAME=text
    TITLE=text
    URL=url
    >Parameter Description 
    CONTENT=description  Specifies meta-information to be associated with the given name or HTTP response header. 
    HTTP-EQUIV=response  Used to bind the CONTENT of the element to an HTTP response header. This information is then used based on the application reading the header.  
    NAME=name  Specifies the name of the control, book, or application. 
    TITLE=text  Used to provide advisory information. 
    URL=url  If a URL is specifies, the URL will be loaded after the specified time has elapsed. ResThis element may only be used within the HEAD tag. The start tag is required, and the end tag is optional. The value of the CONTENT= attribute depends on the HTTP-EQUIV= attribute. The following lists some of these values. HTTP-EQUIV  CONTENT 
    REFRESH  delay[;url] 
    The delay is the number of seconds that the browser waits before reloading a document. The optional url specifies the document to reload. If no url is given, the browser reloads the current document.
     
    Content-Type  text/html; CHARSET=character-set 
    The character-set specifies one of the character set aliases listed in HTML Character Sets.
     
    ExamplesThe following example sets the character set for the document. <META HTTP-EQUIV="Content-Type"
      CONTENT="text/html; CHARSET=Windows-1251">The following example causes the browser to reload the document every two seconds. <META HTTP-EQUIV="REFRESH" CONTENT=2>The following example causes the browser to load the new document, http://www.sample.com/next.htm, after a five second delay. <META HTTP-EQUIV="REFRESH" CONTENT="5; URL=http://www.sample.com/next.htm">The following example causes the server to include the given content in the HTTP response to a GET or HEAD request for the document. <META HTTP-EQUIV="Expires"
    CONTENT="Tue, 04 Dec 1996 21:29:02 GMT">
    <meta http-equiv="Keywords" CONTENT="HTML, Reference">
    <META HTTP-EQUIV="Reply-to"
    content="[email protected]">The HTTP response includes the following header fields. Expires: Tue, 04 Dec 1996 21:29:02 GMT
    Keywords: HTML, Reference
    Reply-to: [email protected] ObjectMETA 
      

  2.   

    也可以用JSCRIPT 控制。使用 SETTIMEOUT!!