02/if_else.html


  1  <?xml version="1.0" encoding="windows-1250"?>
  2  <!DOCTYPE html   PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3    "DTD/xhtml1-strict.dtd">
  4  <html>
  5  <head>
  6    <title>JS: Výnimky if_else</title>
  7    <meta http-equiv="Author" content="Imrich BURANSKY" />
  8    <meta http-equiv="Content-Type" content="text/html; charset=Windows-1250" />
  9  </head>
 10  <body>
 11    <h2>Výnimky if - else</h2>
 12    <script type="text/javascript" >
 13      x=7;
 14      if (x<3)
 15      {
 16        document.write ("Tu je všetko OK<br />");
 17      }
 18      else
 19      {
 20        if (x==7) document.writeln ("VÝNIMKA...<br />");
 21        else  document.write ("Aj tu to OK, ale iné spracovanie...<br />");
 22      }
 23      document.write ("Sem sa dostane aj pri výnimke, èo nechceme... <br />");
 24    </script>
 25  </body>
 26  </html>
 27  
 28  <!-- ***** Výsledok *****
 29  
 30  Výnimky if - else
 31  
 32  VÝNIMKA...
 33  Sem sa dostane aj pri výnimke, èo nechceme...
 34  
 35  -->