Common sections of JavaScript code sharing

Source: Internet
Author: User

  This article mainly introduces a few sections of JavaScript code that are commonly used, and friends who need it can refer to the following

Auto return after 1.3 seconds   code as follows: <span id= "Totalsecond" >3</span> seconds after automatically return     <script language= "javascript "Type=" Text/javascript ">  <!--  var second = document.getElementById (' Totalsecond '). textcontent;   if (navigator.appName.indexOf ("explorer") >-1)//judgment is IE browser or Firefox browser, take the appropriate measures to obtain the number of seconds   {  second = document.getElementById (' Totalsecond ') .innertext; } else  {  second = document.getElementById (' Totalsecond ') .textcontent; }  setinterval ("redirect ()", 1000); Call Redirect () method once every 1 seconds   function redirect ()   {  if (second < 0)   {  location.href = ' http://w Ww.baidu.com '; } else  {  if (navigator.appName.indexOf ("explorer") >-1)   {  document.getElementById (' Totalsecond '). innertext = second--; } else  {  (' Totalsecond '). textcontent = second--; } } } -->  </script>   
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.