Presentation is loading. Please wait.

Presentation is loading. Please wait.

CNIT 133 Interactive Web Pags – JavaScript and AJAX Popup Boxes.

Similar presentations


Presentation on theme: "CNIT 133 Interactive Web Pags – JavaScript and AJAX Popup Boxes."— Presentation transcript:

1 CNIT 133 Interactive Web Pags – JavaScript and AJAX Popup Boxes

2 Agenda My Web Site: http://fog.ccsf.edu/~hyip (download syllabus, class notes).http://fog.ccsf.edu/~hyip Alert box Confirm box Prompt box

3 Alert box To display message to the user. The user will have to click “ok” to proceed. alert box alert("Hello again! This is how we" + '\n' + "add line break to an alert box!");

4 Confirm box Is used if you want the user to verify or accept something. The user will have to click either “ok” or “cancel” to proceed. If the user clicks “ok”, the box returns true, if the user clicks “cancel”, the box returns false.

5 Confirm box (continue…) confirm box var name=confirm("Press a button") if (name==true) { document.write("You pressed the OK button!") } else { document.write("You pressed the Cancel button!") }

6 Prompt box Is often used if you want the user to input a value before entering a page. The user will have to click either “ok” or “cancel” to proceed after entering an input value. If the user clicks “ok”, the box returns the input value as string data type. If the user clicks “cancel”, the box returns null.

7 Prompt box (continue…) prompt box var name=prompt("Please enter your name",""); if (name.length > 0) { document.write("Hello " + name + "! How are you today?"); } else { document.write("Hello UNKNOWN! How are you today? “); }


Download ppt "CNIT 133 Interactive Web Pags – JavaScript and AJAX Popup Boxes."

Similar presentations


Ads by Google