Javascript Knowledge

  • what is javascript

  • javascript Variable
  • javascript function
  • javascript Event

  • JavaScript If
  • javascript for

  • javascript object
  • Javascript String
  • Javascript Date
  • Javacsript Array
  • Javascript Math

  • Javascript onclick
  • JavaScript onload

  • Javascript Frame
  • Javascript Image
  • Javascript Style
  • Javascript Textarea
  • Javascript Table
  • Javascript window
  • Javascript Location
  • Javacsript form
  • Javascript Checkbox
  • Javascript Input
  • Javascript Radio
  • Javascript Select
  • Javascript Submit

  • Javascript alert
  • Javascript close
  • Javascript confirm
  • Javascript Document open
  • Javascript getElementById
  • Javascript print
  • Javascript reload
  • Javascript remove
  • JavaScript replace
  • Javascript setTimeout
  • JavaScript split
  • JavaScript substring
  • Javascript window open
  • window showmodaldialog

  • Javascript href
  • Javascript IFrame
  • Javascript innerHTML
  • Javascript selectedindex
  • Javascript URL
  • Javascript window Location

  • javascript write to file
  • JavaScript write
  • javascript string to integer
  • Javascript popup
  • Javascript return
  • Javascript Obfuscator
  • Javascript disable
  • Javascript Hide
  • More others

    Javascript
    CSS
    PHP

     

    Javascript if


    JavaScript if

    Conditional statements in JavaScript are used to perform different actions based on different conditions.

    JavaScript If Conditional Statements

    Very often when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this.

    In JavaScript we have the following conditional statements:

    • if statement - use this statement if you want to execute some code only if a specified condition is true
    • if...else statement - use this statement if you want to execute some code if the condition is true and another code if the condition is false
    • if...else if....else statement - use this statement if you want to select one of many blocks of code to be executed
    • switch statement - use this statement if you want to select one of many blocks of code to be executed
    Javascript If Statement

    You should use the if statement if you want to execute some code only if a specified condition is true.

    Javascript If Syntax

    if ( condition ) { code to be executed if condition is true }

    Note that if is written in lowercase letters. Using uppercase letters (IF) will generate a JavaScript error!

    Javascript If Example 1

    <script type="text/javascript">

    //Write a "Good morning" greeting if

    //the time is less than 10

    var d=new Date()

    var time=d.getHours()

    if (time<10) { document.write("<b>Good morning</b>") }

    </script>

    Javascript If Example 2

    <script type="text/javascript">

    //Write "Lunch-time!" if the time is 11

    var d=new Date()

    var time=d.getHours()

    if (time==11)

    { document.write("<b>Lunch-time!</b>") }

    </script>

    Note: When comparing variables you must always use two equals signs next to each other (==)!

    Notice that there is no ..else.. in this syntax. You just tell the code to execute some code only if the specified condition is true .

    Javascript If...else Statement

    If you want to execute some code if a condition is true and another code if the condition is not true, use the if....else statement.

    Syntax

    if ( condition ) { code to be executed if condition is true } else { code to be executed if condition is not true }

    Example

    <script type="text/javascript">

    //If the time is less than 10,

    //you will get a "Good morning" greeting.

    //Otherwise you will get a "Good day" greeting.

    var d = new Date()

    var time = d.getHours()

    if (time < 10)

    { document.write("Good morning!") }

    else { document.write("Good day!") }

    </script>

    If...else if...else Statement

    You should use the if....else if...else statement if you want to select one of many sets of lines to execute.

    Syntax

    if ( condition1 )

    { code to be executed if condition1 is true }

    else if ( condition2 )

    { code to be executed if condition2 is true }

    else

    { code to be executed if condition1 and condition2 are not true }

    Example

    <script type="text/javascript">

    var d = new Date()

    var time = d.getHours()

    if (time<10)

    { document.write("<b>Good morning</b>") }

    else if (time>10 && time<16)

    { document.write("<b>Good day</b>") }

    else { document.write("<b>Hello World!</b>") }

    </script>

     

     

     

     

     

     





















     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

  • Javascript |